feat: add preact app

This commit is contained in:
Mauricio Siu
2024-06-30 19:56:30 -06:00
parent 0aadbd63c7
commit 415c719b93
16 changed files with 1423 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { defineConfig } from "vite";
import preact from "@preact/preset-vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [preact()],
preview: {
port: 3000,
host: true,
},
});