2 Star 0 Fork 1

前端研究院/syt-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
craco.config.js 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
xiumubai 提交于 2022-10-07 15:47 . feat: init
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/guigu-fe/syt-admin.git
git@gitee.com:guigu-fe/syt-admin.git
guigu-fe
syt-admin
syt-admin
feature/jurisdiction

搜索帮助