2 Star 2 Fork 0

慕曦/aircityinit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
慕曦 提交于 2021-10-21 14:35 . 1021
/*
* @Author: your name
* @Date: 2021-08-02 00:14:12
* @LastEditTime: 2021-10-09 23:38:04
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \aircityinit\vue.config.js
*/
const path = require("path");
const title = "初始化项目";
module.exports = {
publicPath: "./",
outputDir: process.env.NODE_ENV === "development" ? "devdist" : "proddist", // 不同的环境打不同包名
// outputDir: 'dist',
lintOnSave: false, // 关闭eslint
productionSourceMap: true, // 生产环境下css 分离文件
devServer: {
// 配置服务器
open: true,
// 项目运行时候的端口号
port: 3000,
// https: false,
disableHostCheck: true,
overlay: {
warnings: true,
errors: true,
},
proxy: {
"/api": {
target: "http://120.77.174.86:8200/",
changeOrigin: true,
pathRewrite: {
"^/api": "",
},
},
},
},
css: {
sourceMap: true, // 开启 CSS source maps
loaderOptions: {
sass: {
prependData: "@import '@/styles/common.scss';",
},
},
},
configureWebpack: {
resolve: {
// 配置解析别名
alias: {
"@": path.resolve(__dirname, "./src"),
"@s": path.resolve(__dirname, "./src/assets/style"),
"@i": path.resolve(__dirname, "./src/assets/images"),
},
},
},
chainWebpack: (config) => {
config.plugin("html").tap((args) => {
args[0].title = title;
return args;
});
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Zhang17839092765/aircityinit.git
git@gitee.com:Zhang17839092765/aircityinit.git
Zhang17839092765
aircityinit
aircityinit
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385