refactor: reached same app state using vite

This commit is contained in:
Pihkaal
2024-01-28 15:56:19 +01:00
parent 8446ee6c65
commit 5542dce881
27 changed files with 805 additions and 207 deletions

View File

@@ -1,8 +1,9 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import tsconfigPaths from "vite-tsconfig-paths";
const config = defineConfig({
plugins: [react()],
plugins: [tsconfigPaths(), react()],
});
export default config;