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

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