1 Star 1 Fork 1

coding/map-of-loan-suspension

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 837 Bytes
一键复制 编辑 原始数据 按行查看 历史
giscafer 提交于 2022-07-17 18:55 . chore: copy
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
function resolve(dir) {
return path.join(__dirname, dir);
}
const name = '订单聚合统计';
module.exports = {
publicPath: './', //打包后的位置(如果不设置这个静态资源会报404)
outputDir: 'dist', //打包后的目录名称
assetsDir: 'static', //静态资源目录名称
configureWebpack: {
// provide the app's title in webpack's name field, so that
// it can be accessed in index.html to inject the correct title.
name: name,
resolve: {
alias: {
'@': resolve('src')
}
},
plugins: [
new CopyWebpackPlugin({
patterns: [
{
from: resolve('src/assets/demo.jpg'),
to: 'static/demo.jpg'
}
]
})
]
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaomiquan/map-of-loan-suspension.git
[email protected]:xiaomiquan/map-of-loan-suspension.git
xiaomiquan
map-of-loan-suspension
map-of-loan-suspension
master

搜索帮助