1 Star 1 Fork 2

邱权武(qiuquanwu)/vue-relation

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 740 Bytes
一键复制 编辑 原始数据 按行查看 历史
“yhpei” 提交于 2022-06-17 16:18 . 打包优化
const { defineConfig } = require('@vue/cli-service');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = defineConfig({
transpileDependencies: true,
configureWebpack: (config) => {
config.plugins = config.plugins.concat([
// 将 dll 注入到 生成的 html 模板中
new CopyWebpackPlugin({
patterns: [
{
from: __dirname + '/package.json',
to: __dirname + '/dist'
},
{
from: __dirname + '/README.md',
to: __dirname + '/dist'
}
]
})
]);
}
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/isfive/vue-relation.git
git@gitee.com:isfive/vue-relation.git
isfive
vue-relation
vue-relation
master

搜索帮助