120 lines
4.0 KiB
JavaScript
120 lines
4.0 KiB
JavaScript
/*
|
|
* Copyright © 2026 Qiantong Technology Co., Ltd.
|
|
* qModel Model Platform(Open Source Edition)
|
|
* *
|
|
* License:
|
|
* Released under the Apache License, Version 2.0.
|
|
* You may use, modify, and distribute this software for commercial purposes
|
|
* under the terms of the License.
|
|
* *
|
|
* Special Notice:
|
|
* All derivative versions are strictly prohibited from modifying or removing
|
|
* the default system logo and copyright information.
|
|
* For brand customization, please apply for brand customization authorization via official channels.
|
|
* *
|
|
* More information: https://qmodel.qiantong.tech/business.html
|
|
* *
|
|
* ============================================================================
|
|
* *
|
|
* 版权所有 © 2026 江苏千桐科技有限公司
|
|
* qModel 模型平台(开源版)
|
|
* *
|
|
* 许可协议:
|
|
* 本项目基于 Apache License 2.0 开源协议发布,
|
|
* 允许在遵守协议的前提下进行商用、修改和分发。
|
|
* *
|
|
* 特别说明:
|
|
* 所有衍生版本不得修改或移除系统默认的 LOGO 和版权信息;
|
|
* 如需定制品牌,请通过官方渠道申请品牌定制授权。
|
|
* *
|
|
* 更多信息请访问:https://qmodel.qiantong.tech/business.html
|
|
*/
|
|
|
|
import { defineConfig, loadEnv } from "vite";
|
|
import path from "path";
|
|
import createVitePlugins from "./vite/plugins";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(({ mode, command }) => {
|
|
const env = loadEnv(mode, process.cwd());
|
|
const { VITE_APP_ENV, VITE_APP_FLOW_API } = env;
|
|
return {
|
|
// 部署生产环境和开发环境下的URL。
|
|
// 默认情况下,vite 会假设你的应用是被部署在一个域名的根路径上
|
|
// 例如 https://www.ruoyi.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.ruoyi.vip/admin/,则设置 baseUrl 为 /admin/。
|
|
base: VITE_APP_ENV === "production" ? "/" : "/",
|
|
plugins: createVitePlugins(env, command === "build"),
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
main: path.resolve(__dirname, "index.html"),
|
|
// nested: path.resolve(__dirname, "login/index.html"),
|
|
},
|
|
output: {
|
|
manualChunks(id) {
|
|
if (id.includes("node_modules")) {
|
|
return id
|
|
.toString()
|
|
.split("node_modules/")[1]
|
|
.split("/")[0]
|
|
.toString();
|
|
}
|
|
},
|
|
},
|
|
},
|
|
},
|
|
resolve: {
|
|
// https://cn.vitejs.dev/config/#resolve-alias
|
|
alias: {
|
|
// 设置路径
|
|
"~": path.resolve(__dirname, "./"),
|
|
// 设置别名
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
// https://cn.vitejs.dev/config/#resolve-extensions
|
|
extensions: [".mjs", ".js", ".ts", ".jsx", ".tsx", ".json", ".vue"],
|
|
},
|
|
// vite 相关配置
|
|
server: {
|
|
port: 80,
|
|
host: true,
|
|
open: true,
|
|
proxy: {
|
|
// https://cn.vitejs.dev/config/#server-proxy
|
|
"/dev-api": {
|
|
target: "http://localhost:8090",
|
|
changeOrigin: true,
|
|
rewrite: (p) => p.replace(/^\/dev-api/, ""),
|
|
},
|
|
"/v3/api-docs": {
|
|
target: "http://localhost:8090",
|
|
changeOrigin: true,
|
|
rewrite: (p) => p.replace("", ""),
|
|
},
|
|
"/flyflow-api": {
|
|
target: VITE_APP_FLOW_API, // 本地接口地址 , 后端工程仓库地址:https://gitee.com/youlaiorg/youlai-boot
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(new RegExp("^/flyflow-api"), ""), // 替换 /dev-api 为 target 接口地址
|
|
},
|
|
},
|
|
},
|
|
//fix:error:stdin>:7356:1: warning: "@charset" must be the first rule in the file
|
|
css: {
|
|
postcss: {
|
|
plugins: [
|
|
{
|
|
postcssPlugin: "internal:charset-removal",
|
|
AtRule: {
|
|
charset: (atRule) => {
|
|
if (atRule.name === "charset") {
|
|
atRule.remove();
|
|
}
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
};
|
|
});
|