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
532 B

7 months ago
var browserSync = require('browser-sync');
7 months ago
var themeName = 'vre2024';
var siteUrl = 'https://library_local.lndo.site';
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: [
{
6 months ago
match: themePath,
7 months ago
replace: ''
6 months ago
//match: /\/themes\/custom\/vre2024/g,
//replace: ''
7 months ago
}
]
});