browser-sync.mjs 376 B

123456789101112131415161718192021
  1. import browserSync from 'browser-sync'
  2. browserSync({
  3. watch: true,
  4. files: ["dist/*"],
  5. server: {
  6. baseDir: 'demo',
  7. routes: {
  8. '/node_modules': 'node_modules',
  9. '/dist/css': `dist/css`,
  10. '/dist/js': `dist/js`,
  11. '/dist/img': `dist/img`,
  12. '/static': `static`,
  13. },
  14. port: 3000,
  15. open: false,
  16. host: 'localhost',
  17. notify: false,
  18. reloadOnRestart: true,
  19. },
  20. });