15 lines
366 B
15 lines
366 B
var browserSync = require('browser-sync'); |
|
|
|
browserSync({ |
|
//proxy: 'http://137.149.200.93', |
|
proxy: 'https://islandimagined2.islandarchives.ca', |
|
files: 'css/**/*.css', |
|
plugins: ['bs-rewrite-rules'], |
|
serveStatic: ['.'], |
|
rewriteRules: [ |
|
{ |
|
match: /\/themes\/custom\/olivesimagined/g, |
|
replace: '' |
|
} |
|
] |
|
});
|
|
|