init from gitlab

This commit is contained in:
texm
2023-04-25 14:33:14 +08:00
parent 6a85a41ff0
commit c8202a5c82
281 changed files with 19861 additions and 1 deletions

14
ui/svelte.config.js Normal file
View File

@@ -0,0 +1,14 @@
import adapter from "@sveltejs/adapter-static";
import { vitePreprocess } from '@sveltejs/kit/vite';
const config = {
kit: {
adapter: adapter({
pages: "dist",
fallback: "app.html"
}),
},
preprocess: vitePreprocess(),
};
export default config;