This commit is contained in:
2022-03-22 17:47:26 -05:00
commit da78983719
9 changed files with 1297 additions and 0 deletions

16
vite.config.js Normal file
View File

@@ -0,0 +1,16 @@
import { defineConfig } from "vite";
import { resolve } from "path";
import preact from "@preact/preset-vite";
export default defineConfig({
plugins: [
preact()
],
build: {
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html')
}
}
}
});