1 Star 0 Fork 646

我们一起毁童年/xdh-map

forked from spring/xdh-map 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 885 Bytes
一键复制 编辑 原始数据 按行查看 历史
踩着两条虫 提交于 2019-02-22 16:07 . 发布文档
const path = require('path')
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
publicPath: '/xdh-map/',
pages: {
index: {
entry: 'examples/main.js',
template: 'public/index.html',
filename: 'index.html'
}
},
chainWebpack: config => {
config.module
.rule('js')
.include
.add('/packages/')
.add('/utils/')
.end()
.use('babel')
.loader('babel-loader')
.tap(options => options)
},
configureWebpack: {
// 不显示文件过大优化建议
performance: {
hints: false
},
resolve: {
alias: {
'utils': resolve('utils'),
'packages': resolve('packages'),
'sources': resolve('sources'),
'@': resolve('src'),
'vue$': process.env.NODE_ENV === 'production' ? 'vue' : 'vue/dist/vue.esm.js'
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/Sandarmo/xdh-map.git
git@gitee.com:Sandarmo/xdh-map.git
Sandarmo
xdh-map
xdh-map
master

搜索帮助