const { defineConfig } = require('@vue/cli-service') const path = require('path') module.exports = defineConfig({ publicPath: './', outputDir: 'goaf_bigScreen_dist', assetsDir: 'static', transpileDependencies: true, productionSourceMap: false, configureWebpack: { resolve: { alias: { '@': path.join(__dirname, 'src') } } }, devServer:{ open:true, }, lintOnSave:false })