1 Star 2 Fork 4

wocwin/wocwin-vue2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 3.75 KB
一键复制 编辑 原始数据 按行查看 历史
'use strict'
const path = require('path')
const CompressionWebpackPlugin = require('compression-webpack-plugin')
const productionGzipExtensions = ['js', 'css']
const defaultTitle = require('./package.json').description
const packageName = require('./package.json').name
const isProduction = process.env.NODE_ENV === 'production'
function resolve(dir) {
return path.join(__dirname, dir)
}
const name = defaultTitle || '常规vue2模板' // 标题
module.exports = {
// 部署生产环境和开发环境下的URL。
publicPath: '/wocwin-vue2/',
// 用于放置生成的静态资源 (js、css、img、fonts) 的;(项目打包之后,静态资源会放在这个文件夹下)
assetsDir: 'static',
// 是否开启eslint保存检测,有效值:ture | false | 'error'
lintOnSave: !isProduction,
// 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
productionSourceMap: false,
// webpack-dev-server 相关配置
devServer: {
headers: {
'Access-Control-Allow-Origin': '*'
},
port: 9100,
open: false,
proxy: {
'^/api': {
target: process.env.VUE_APP_BASE_API, // 开发环境
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
},
disableHostCheck: true
},
configureWebpack: {
plugins: isProduction ? [
new CompressionWebpackPlugin({
filename: '[path].gz[query]',
algorithm: 'gzip',
test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'),
threshold: 10240,
minRatio: 0.8
})
] : [],
name: name,
performance: {
// 打包文件大小配置
maxEntrypointSize: 5000000,
maxAssetSize: 3000000
},
resolve: {
alias: {
vue$: 'vue/dist/vue.esm.js',
'@': resolve('src')
}
},
output: {
// 把子应用打包成 umd 库格式
library: `${packageName}`,
libraryTarget: 'umd', // 把微应用打包成 umd 库格式
jsonpFunction: `webpackJsonp_${packageName}`,
filename: `[name].[hash].js`,
chunkFilename: `[name].[hash].js`
}
},
chainWebpack(config) {
config.plugins.delete('preload') // TODO: need test
config.plugins.delete('prefetch') // TODO: need test
// set svg-sprite-loader
config.module
.rule('svg')
.exclude.add(resolve('src/assets/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/assets/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
.end()
config.module
.rule('fonts')
.test(/\.(ttf|woff)(\?.*)?$/)
.use('url-loader')
.loader('url-loader')
.tap(options => {
options = {
...options,
limit: 1024 * 1024,
name: '[name].[hash:7].[ext]'
}
return options
})
.end()
// set preserveWhitespace
config.module
.rule('vue')
.use('vue-loader')
.loader('vue-loader')
.tap(options => {
options.compilerOptions.preserveWhitespace = true
return options
})
.end()
config
// https://webpack.js.org/configuration/devtool/#development
.when(process.env.NODE_ENV === 'development',
config => config.devtool('cheap-source-map')
)
config
.when(process.env.NODE_ENV !== 'development',
config => {
config
.plugin('ScriptExtHtmlWebpackPlugin')
.after('html')
.use('script-ext-html-webpack-plugin', [{
inline: /runtime\..*\.js$/
}])
.end()
config.optimization.runtimeChunk('single')
}
)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wocwin/wocwin-vue2.git
git@gitee.com:wocwin/wocwin-vue2.git
wocwin
wocwin-vue2
wocwin-vue2
master

搜索帮助