Upgrade vite & ts configuration
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-28 15:39:39 +01:00
parent 0e79202c77
commit 1a706ee6a3
8 changed files with 107 additions and 67 deletions

View File

@ -1,15 +1,7 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import viteTsconfigPaths from "vite-tsconfig-paths";
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
// depending on your application, base can also be "/"
base: "/",
plugins: [react(), viteTsconfigPaths()],
server: {
// this ensures that the browser opens upon server start
open: true,
// this sets a default port to 3000
port: 3000,
},
});
plugins: [react()],
})