Added the function of detecting whether the uploaded content is safe and providing prompts (#867)

Signed-off-by: Yue, Wenjiao <wenjiao.yue@intel.com>
This commit is contained in:
WenjiaoYue
2024-09-24 16:29:10 +08:00
committed by GitHub
parent 954a22051b
commit e6fde1456d
10 changed files with 172 additions and 109 deletions

View File

@@ -17,7 +17,10 @@ import type { UserConfig } from "vite";
const config: UserConfig = {
plugins: [sveltekit()],
server: {},
server: {
host: '0.0.0.0',
port: 5173,
},
};
export default config;