3 Star 1 Fork 0

L1uFe1/h5_web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
18937871193 提交于 2021-09-17 09:20 . feat: 配置项更改
const { resolve } = require('path')
module.exports = {
// 部署应用包时的基本 URL
publicPath: './',
// 输出文件目录
outputDir: 'dist',
// 静态资源文件
assetsDir: 'static',
// 相对于outputDir 的路径
indexPath: 'index.html',
// 是否在保存的时候使用 `eslint-loader` 进行检查。
lintOnSave: false,
// 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
productionSourceMap: false,
css: {
// css分离
extract: true
},
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')
}
}
},
devServer: {
port: 8081,
proxy: {
'/api': {
target: 'http://192.168.10.137:8001/',
changeOrigin: true,
ws: false,
pathRewrite: {
'^/api': ''
}
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/l1ufe1/h5_web.git
git@gitee.com:l1ufe1/h5_web.git
l1ufe1
h5_web
h5_web
master

搜索帮助