Initial commit

This commit is contained in:
apollo79 2024-07-30 14:59:22 +02:00
commit df9c300e15
No known key found for this signature in database
11 changed files with 3096 additions and 0 deletions

22
vite.config.ts Normal file
View file

@ -0,0 +1,22 @@
import { defineConfig } from "vite";
import solidPlugin from "vite-plugin-solid";
// import devtools from 'solid-devtools/vite';
import UnoCSS from "unocss/vite";
export default defineConfig({
plugins: [
/*
Uncomment the following line to enable solid-devtools.
For more info see https://github.com/thetarnav/solid-devtools/tree/main/packages/extension#readme
*/
// devtools(),
solidPlugin(),
UnoCSS(),
],
server: {
port: 3000,
},
build: {
target: "esnext",
},
});