mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-02 20:28:00 +08:00
25 lines
636 B
JavaScript
25 lines
636 B
JavaScript
const {defineConfig} = require('@vue/cli-service')
|
|
let webpack = require('webpack')
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
lintOnSave: false, //关闭eslint校验
|
|
configureWebpack: {
|
|
// disable performance hints
|
|
performance: {
|
|
hints: false
|
|
},
|
|
plugins: [
|
|
new webpack.optimize.MinChunkSizePlugin({minChunkSize: 10000})
|
|
]
|
|
},
|
|
|
|
publicPath: process.env.NODE_ENV === 'production' ? '/' : '/',
|
|
|
|
outputDir: 'dist',
|
|
crossorigin: "anonymous",
|
|
devServer: {
|
|
allowedHosts: ['127.0.0.1:5678'],
|
|
port: 8888,
|
|
}
|
|
})
|