io3fix
Version:
toolkit for interior apps
20 lines • 507 B
JavaScript
// https://github.com/johnpapa/lite-server
// https://browsersync.io/docs/options/
module.exports = {
port: 8080,
startPath: '/examples-browser/',
files: [{
match: ['examples-browser/**'],
watchEvents: ['change']
}, {
match: ['build/**'],
watchEvents: ['add']
}],
serveStatic: ['./'], // uses index.html in directories
server: {
directory: true,
// this is required to get directory listings (?bug?)
middleware: { 1: null }
},
scrollRestoreTechnique: 'cookie'
}