代码拉取完成,页面将自动刷新
const CracoLessPlugin = require("craco-less");
const CracoAlias = require("craco-alias");
module.exports = {
plugins: [
// 自定义主题
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
modifyVars: { "@primary-color": "#1DA57A" },
javascriptEnabled: true,
},
},
},
},
// 路径别名
{
plugin: CracoAlias,
options: {
source: "tsconfig",
tsConfigPath: "./tsconfig.extend.json",
},
},
],
// 开发服务器配置
devServer: {
// 激活代理服务器
proxy: {
// 将来以/dev-api开头的请求,就会被开发服务器转发到目标服务器去。
"/dev-api": {
// 需要转发的请求前缀
target: "http://syt-api.atguigu.cn", // 目标服务器地址
changeOrigin: true, // 为true时代理在转发时, 会将请求头的host改为target的值
pathRewrite: { // 路径重写
"^/dev-api": "", // 在转发请求时去掉多的/dev-api部分
},
},
},
},
};
// http://localhost:3000/admin/auth/index/login
// http://localhost:3000/dev-api/admin/auth/index/login 能匹配代理
// 转发请求: http://syt-api.atguigu.cn/admin/auth/index/login
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。