feat: add commands

This commit is contained in:
reya
2024-07-23 15:11:17 +07:00
parent 7cd5f06122
commit 9b1edf7f62
14 changed files with 850 additions and 153 deletions

View File

@@ -3,9 +3,21 @@ import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
import tsconfigPaths from "vite-tsconfig-paths";
const ReactCompilerConfig = {
/* ... */
};
// https://vitejs.dev/config/
export default defineConfig(async () => ({
plugins: [TanStackRouterVite(), tsconfigPaths(), react()],
plugins: [
TanStackRouterVite(),
tsconfigPaths(),
react({
babel: {
plugins: [["babel-plugin-react-compiler", ReactCompilerConfig]],
},
}),
],
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
//