Created
October 20, 2016 11:59
-
-
Save anonymous/7d5dcc64d18cb49f2e48f89c1aa99343 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var browserSync = require('browser-sync').create(); | |
browserSync({ | |
proxy: 'https://www.wikipedia.org/', | |
files: ['assets/**'], | |
serveStatic: ['assets'], | |
rewriteRules: [ | |
{ | |
match: 'portal/wikipedia.org/assets/js/index-6adef12f4f.js', | |
replace: '/js/index.js' | |
} | |
] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment