Skip to content

Commit b721c25

Browse files
authored
Fix Domain Access Issue in Latest Vite Version (opea-project#1444)
Fix the restriction on using domain names when users are using the latest version of Vite When users use the new version of Vite, the UI cannot be accessed via domain names due to Vite's new rules. This fix adds the corresponding parameters according to Vite's new rules, ensuring that users can access the frontend via domain names when building the UI. Fixes opea-project#1441 Co-authored-by: WenjiaoYue <[email protected]>
1 parent 927698e commit b721c25

File tree

12 files changed

+32
-18
lines changed

12 files changed

+32
-18
lines changed

AgentQnA/ui/svelte/vite.config.ts

+1-8
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,7 @@ import type { UserConfig } from "vite";
77
const config: UserConfig = {
88
plugins: [sveltekit()],
99
server: {
10-
proxy: {
11-
"/api": {
12-
target: "http://10.112.228.168:8000",
13-
changeOrigin: true,
14-
secure: true,
15-
rewrite: (path) => path.replace(/^\/api/, ""),
16-
},
17-
},
10+
allowedHosts: true,
1811
},
1912
};
2013

AudioQnA/ui/svelte/vite.config.ts

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ import type { UserConfig } from "vite";
1717

1818
const config: UserConfig = {
1919
plugins: [sveltekit()],
20+
server: {
21+
allowedHosts: true,
22+
},
2023
};
2124

2225
export default config;

ChatQnA/ui/svelte/vite.config.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ import type { UserConfig } from "vite";
1717

1818
const config: UserConfig = {
1919
plugins: [sveltekit()],
20-
server: {},
20+
server: {
21+
allowedHosts: true,
22+
},
2123
};
2224

2325
export default config;

CodeGen/ui/svelte/vite.config.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ import type { UserConfig } from "vite";
1717

1818
const config: UserConfig = {
1919
plugins: [sveltekit()],
20-
server: {},
20+
server: {
21+
allowedHosts: true,
22+
},
2123
};
2224

2325
export default config;

CodeTrans/ui/svelte/vite.config.ts

+3
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@ import { defineConfig } from "vite";
1717

1818
export default defineConfig({
1919
plugins: [sveltekit()],
20+
server: {
21+
allowedHosts: true,
22+
},
2023
});

DocSum/ui/svelte/vite.config.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ import type { UserConfig } from "vite";
1717

1818
const config: UserConfig = {
1919
plugins: [sveltekit()],
20-
server: {},
20+
server: {
21+
allowedHosts: true,
22+
},
2123
};
2224

2325
export default config;

FaqGen/ui/svelte/vite.config.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ import type { UserConfig } from "vite";
1717

1818
const config: UserConfig = {
1919
plugins: [sveltekit()],
20-
server: {},
20+
server: {
21+
allowedHosts: true,
22+
},
2123
};
2224

2325
export default config;

GraphRAG/ui/svelte/vite.config.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ import type { UserConfig } from "vite";
66

77
const config: UserConfig = {
88
plugins: [sveltekit()],
9-
server: {},
9+
server: {
10+
allowedHosts: true,
11+
},
1012
};
1113

1214
export default config;

SearchQnA/ui/svelte/vite.config.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ import type { UserConfig } from "vite";
1717

1818
const config: UserConfig = {
1919
plugins: [sveltekit()],
20-
server: {},
20+
server: {
21+
allowedHosts: true,
22+
},
2123
};
2224

2325
export default config;

Text2Image/ui/svelte/vite.config.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ import type { UserConfig } from "vite";
1818
const config: UserConfig = {
1919
plugins: [sveltekit()],
2020
server: {
21-
host: "0.0.0.0",
22-
port: 5173,
21+
allowedHosts: true,
2322
},
2423
};
2524

Translation/ui/svelte/vite.config.ts

+3
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@ import { defineConfig } from "vite";
1717

1818
export default defineConfig({
1919
plugins: [sveltekit()],
20+
server: {
21+
allowedHosts: true,
22+
},
2023
});

VisualQnA/ui/svelte/vite.config.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ import type { UserConfig } from "vite";
1717

1818
const config: UserConfig = {
1919
plugins: [sveltekit()],
20-
server: {},
20+
server: {
21+
allowedHosts: true,
22+
},
2123
};
22-
2324
export default config;

0 commit comments

Comments
 (0)