Pārlūkot izejas kodu

feat: 调整项目配置

sunxiao 1 mēnesi atpakaļ
vecāks
revīzija
84e4e9593e
3 mainītis faili ar 4 papildinājumiem un 3 dzēšanām
  1. 1 1
      .env.development
  2. 1 1
      .env.production
  3. 2 1
      vite.config.js

+ 1 - 1
.env.development

@@ -5,7 +5,7 @@ VITE_APP_TITLE = LibraAI智能体运营平台
 VITE_APP_ENV = 'development'
 
 # 管理系统/开发环境
-VITE_APP_BASE_API =  http://10.0.0.28:8080/
+VITE_APP_BASE_API =  ''
 # VITE_APP_BASE_API = 'http://192.168.9.54:8080/'
 
 VITE_APP_BASE_TEST = http://10.0.0.28:8080/

+ 1 - 1
.env.production

@@ -5,7 +5,7 @@ VITE_APP_TITLE = LibraAI智能体运营平台
 VITE_APP_ENV = 'production'
 
 # 管理系统/生产环境
-VITE_APP_BASE_API = 'http://192.168.9.54:8080/'
+VITE_APP_BASE_API = ''
 
 # 是否在打包时开启压缩,支持 gzip 和 brotli
 VITE_BUILD_COMPRESS = gzip

+ 2 - 1
vite.config.js

@@ -8,10 +8,11 @@ export default defineConfig(({ mode, command }) => {
   const env = loadEnv(mode, process.cwd())
   const { VITE_APP_ENV } = env
   return {
+    // publicPath: '/admin/',
     // 部署生产环境和开发环境下的URL。
     // 默认情况下,vite 会假设你的应用是被部署在一个域名的根路径上
     // 例如 https://www.ruoyi.vip/。如果应用被部署在一个子路径上,你就需要用这个选项指定这个子路径。例如,如果你的应用被部署在 https://www.ruoyi.vip/admin/,则设置 baseUrl 为 /admin/。
-    base: VITE_APP_ENV === 'production' ? './' : '/',
+    base: VITE_APP_ENV === 'production' ? '/admin/' : '/',
     plugins: createVitePlugins(env, command === 'build'),
     resolve: {
       // https://cn.vitejs.dev/config/#resolve-alias