Initial commit for Deployer App

This commit is contained in:
2025-04-13 10:25:29 +02:00
commit c6755a1467
291 changed files with 15089 additions and 0 deletions

20
vite.config.ts Normal file
View File

@ -0,0 +1,20 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite';
import svgr from "vite-plugin-svgr";
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
tailwindcss(),
svgr({
svgrOptions: {
icon: true,
// This will transform your SVG to a React component
exportType: "named",
namedExport: "ReactComponent",
},
})
],
})