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.

19 lines
428 B

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