const {defineConfig} = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, lintOnSave: false, assetsDir:'static', publicPath:"./", devServer: { // host: process.env.HOST, // port: 8080, // open: true, // historyApiFallback: true, // allowedHosts: 'all', // hot: true, https: false, client:{ overlay:false, }, open: { target: ['http://localhost:8527'], }, port: 8527 } })