vue.config.js 252 B

12345678910111213
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. transpileDependencies: true,
  4. publicPath: './',
  5. devServer: {
  6. watchFiles: {
  7. options: {
  8. usePolling: true,
  9. poll: 1000
  10. }
  11. }
  12. }
  13. })