Solstice web interface.
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
287 B

// This file configures a web server for testing the production build
// on your local machine.
import browserSync from 'browser-sync';
// Run Browsersync
browserSync({
port: 3000,
ui: {
port: 3001
},
server: {
baseDir: 'dist'
},
files: [
'src/*.html'
]
});