vue.config.js 289 B

1234567891011
  1. module.exports = {
  2. publicPath: process.env.NODE_ENV === 'production' ? './' : '/',
  3. outputDir: 'sxyc',
  4. 'devServer': {
  5. 'open': true,
  6. sockHost: 'http://localhost:8080/',
  7. disableHostCheck: true,
  8. },
  9. productionSourceMap: false,
  10. lintOnSave: false
  11. }