You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
534 B

5 months ago
var browserSync = require('browser-sync');
5 months ago
var themeName = 'vre2024';
var siteUrl = 'https://d10test.islandarchives.ca';
5 months ago
var cssWatchDir = 'css/**/*.css';
5 months ago
var themePath = '/themes/custom/vre2024';
5 months ago
var filesToServe = '.';
5 months ago
browserSync({
5 months ago
proxy: siteUrl,
files: cssWatchDir,
5 months ago
plugins: ['bs-rewrite-rules'],
5 months ago
serveStatic: [filesToServe],
5 months ago
rewriteRules: [
{
//match: themePath,
5 months ago
//replace: ''
match: /\/themes\/custom\/vre2024/g,
replace: ''
5 months ago
}
]
});