vue.config.js 207 B

123456789101112
  1. module.exports = {
  2. publicPath: "./",
  3. productionSourceMap: process.env.NODE_ENV !== "production",
  4. devServer: {
  5. overlay: {
  6. warnings: true,
  7. errors: true
  8. }
  9. },
  10. lintOnSave: false
  11. };