vue.config.js 237 B

123456789101112
  1. module.exports = {
  2. publicPath: './',
  3. outputDir: '../www',
  4. assetsDir: 'static',
  5. productionSourceMap: false,
  6. lintOnSave: true,
  7. filenameHashing: true,
  8. devServer: {
  9. https: false,
  10. port: 4562
  11. }
  12. }