fix: add hf space host to vite config
Browse files- demo/vite.config.ts +3 -0
demo/vite.config.ts
CHANGED
@@ -15,5 +15,8 @@ export default defineConfig({
|
|
15 |
server: {
|
16 |
host: "0.0.0.0",
|
17 |
port: 7860,
|
|
|
|
|
|
|
18 |
},
|
19 |
})
|
|
|
15 |
server: {
|
16 |
host: "0.0.0.0",
|
17 |
port: 7860,
|
18 |
+
allowedHosts: [
|
19 |
+
"seonglae-corrsteer.hf.space"
|
20 |
+
]
|
21 |
},
|
22 |
})
|