1 Star 0 Fork 7

矛盾舞步/vue-template(vue模板,基于vue3的模板)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 2.15 KB
一键复制 编辑 原始数据 按行查看 历史
xunjianhe 提交于 2020-09-03 17:10 . 增加 axios 处理
// vue.config.js
// 相关参数配置:https://cli.vuejs.org/zh/config/#%E5%85%A8%E5%B1%80-cli-%E9%85%8D%E7%BD%AE
// created by hexunjian < 2020-08-31 >
module.exports = {
// 基础 URL, baseUrl 从 cli 3.3 开始弃用
publicPath: process.env.NODE_ENV === 'production'
? '/'
: '',
// 打包后的项目文件所在的目录名称,默认为: dist
outputDir: 'dist',
// 是否生成生产环境( -build- )的 source map
productionSourceMap: true,
// 生成的今天资源文件名称是否 hash , hash后可以解决缓存的问题
filenameHashing: false,
// 放置生成的静态资源 ( js、css、img、fonts , 相对于 outputDir , 默认为空 )
assetsDir: "assets",
// 指定生成的 index.html 的输出路径 (相对于 outputDir), 也可以是一个绝对路径, 默认值'index.html'
indexPath: "index.html",
// 是否使用包含运行时编译器的 Vue 构建版本。设置为 true 后你就可以在 Vue 组件中使用 template 选项了,但是这会让你的应用额外增加 10kb 左右。
runtimeCompiler: false,
// 是否在开发环境下通过 eslint-loader 在每次保存时 lint 代码。这个值会在 @vue/cli-plugin-eslint 被安装之后生效。
lintOnSave: process.env.NODE_ENV !== "production",
// 所有 webpack-dev-server 的选项都支持。
devServer: {
host: "localhost", // 本地启动时的ip地址
port: 8080, // 端口号
https: false,
open: true, // 自动启动浏览器
// TODO: 配置代理
// proxy: {
// "/api": {
// target: "http://127.0.0.1:9527",
// changeOrigin: true,
// pathRewrite: { // 去掉接口地址中的api字符串
// "^/api": ""
// }
// },
// "/foo": {
// target: "http://127.0.0.1:9528",
// changeOrigin: true,
// pathRewrite: { // 去掉接口地址中的foo字符串
// "^/foo": ""
// }
// }
// }
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/goldenblue/vue3-template.git
git@gitee.com:goldenblue/vue3-template.git
goldenblue
vue3-template
vue-template(vue模板,基于vue3的模板)
master

搜索帮助