想请问下如何外面 100 个 map 和 js 文件如何打包的时候不生成
// All configuration item explanations can be find in https://cli.vuejs.org/config/
module.exports = {
/**
* You will need to set publicPath if you plan to deploy your site under a sub path,
* for example GitHub Pages. If you plan to deploy your site to https://foo.github.io/bar/,
* then publicPath should be set to "/bar/".
* In most cases please use '/' !!!
* Detail: https://cli.vuejs.org/config/#publicpath
*/
publicPath: '', // publicPath:''
outputDir: 'dist',
assetsDir: 'static',
lintOnSave: process.env.NODE_ENV === 'development',
productionSourceMap: false,
productionSourceMap 已经配置过了
在非 prod 模式下打包的
1
liyang5945 2020-12-28 17:14:26 +08:00
这种情况你需要打包成 测试环境 API prod 模式的
|
2
TomVista 2020-12-28 17:16:45 +08:00
你这看着好像是 vue 刚刚开始学的样子?
搞定这个问题,需要把 vue 前端用的东西串一遍 node webpack babel loader 什么的,直接给你几行代码搞定也不现实 建议用 vue-cli 默认配置重新建项目,然后把你的代码复制过去,打包什么的都不用配置,直接 build 就行,其他的东西一边写一边学 |
3
xiaohantx OP @liyang5945 我用的 npm run build:dev
|
4
waiaan 2020-12-28 17:30:13 +08:00
npm run build:prod
|