diff options
| author | Yuval Adam <_@yuv.al> | 2025-03-05 09:22:48 +0100 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-03-05 09:22:48 +0100 |
| commit | 0f187f792c264ba3d9e7de62b577fbfea0d86386 (patch) | |
| tree | 0ec1d49062e0b562fe1d60f2c123d2d3927e60ff /morsehero/vite.config.ts | |
| parent | 0f19e2f80ac7ac2f45310eab35e2af5e55f23de2 (diff) | |
Initial vite project
Diffstat (limited to 'morsehero/vite.config.ts')
| -rw-r--r-- | morsehero/vite.config.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/morsehero/vite.config.ts b/morsehero/vite.config.ts new file mode 100644 index 0000000..8b0f57b --- /dev/null +++ b/morsehero/vite.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], +}) |
