Vue2 修改打包文件的编码格式
项目信息:
依赖 | 版本 |
---|---|
vue | ^2.6.11 |
webpack | ^4.44.2 |
webpack-encoding-plugin | ^0.3.1 |
- 安装插件
npm i webpack-encoding-plugin --save-dev
- 修改配置
编辑vue.config.js文件
const EncodingPlugin = require('webpack-encoding-plugin')
module.exports = {
// ...
configureWebpack: () => {
return {
plugins: [
new EncodingPlugin({
encoding: 'gbk'
}),
],
}
},
}
修改其中的encoding
为目标编码即可
- 打包
npm run build