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