代码拉取完成,页面将自动刷新
const path = require("path");
const CracoLessPlugin = require("craco-less");
const autoprefixer = require("autoprefixer");
const resolve = dir => path.resolve(__dirname, dir);
module.exports = {
//配置代理解决跨域
devServer: {
open: false,
port: 3000,
proxy: {
"/api": {
target: "https://mock.mengxuegu.com/mock/6530e1a482cf79200957672e",
changeOrigin: true,
pathRewrite: {
"^/api": "/"
}
}
}
},
style: {
postcss: {
plugins: [autoprefixer()]
}
},
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
// 这里可以添加自定义的 less-loader 选项
modifyVars: {
"@primary-color": "#1890ff"
},
javascriptEnabled: true
}
}
}
}
],
webpack: {
//@符号作为src文件
alias: {
"@": path.join(__dirname, "src")
},
configure: webpackConfig => {
webpackConfig.module.rules[1].oneOf = [
...[
{
test: /.svg$/,
// 存放svg的文件夹
include: resolve("./src/assets/svg"),
use: [
{ loader: "svg-sprite-loader", options: {} },
{ loader: "svgo-loader", options: { symbolId: "icon-[name]" } }
]
}
],
...webpackConfig.module.rules[1].oneOf
];
return webpackConfig;
}
},
babel: {
plugins: [["@babel/plugin-proposal-decorators", { legacy: true }]]
}
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。