wip: change assets handling to vite-rs

This commit is contained in:
Alexander Navarro 2025-04-17 16:48:46 -04:00
parent 6cf98d1f1a
commit b25719827f
12 changed files with 468 additions and 21 deletions

10
vite.config.ts Normal file
View file

@ -0,0 +1,10 @@
import { defineConfig } from "vite";
export default defineConfig({
plugins: [],
build: {
rollupOptions: {
input: ["frontend/js/index.ts"],
},
},
});