1 Star 0 Fork 1

我一路向北/MarkCV

forked from 衣沾不足惜/MarkCV 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 748 Bytes
一键复制 编辑 原始数据 按行查看 历史
衣沾不足惜 提交于 2020-06-04 01:34 . init
const path = require("path")
module.exports = {
outputDir: "dist",
assetsDir: "static",
publicPath: "./",
devServer: {
proxy: {
[process.env.VUE_APP_BASE_API]: {
target: process.env.PROXY_TARGET,
changeOrigin: true,
pathRewrite: {
["^" + process.env.VUE_APP_BASE_API]: ""
}
}
}
},
chainWebpack: config => {
const types = ["vue-modules", "vue", "normal-modules", "normal"]
types.forEach(type =>
addStyleResource(config.module.rule("scss").oneOf(type))
)
}
}
function addStyleResource(rule) {
rule
.use("style-resource")
.loader("style-resources-loader")
.options({
patterns: [path.resolve(__dirname, "./src/scss/index.scss")]
})
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/younth/MarkCV.git
git@gitee.com:younth/MarkCV.git
younth
MarkCV
MarkCV
master

搜索帮助