Created the web vite.config.js

This commit is contained in:
Mathias Wagner
2024-03-09 10:48:22 +01:00
parent 1823111c63
commit e6cc7363e2

12
web/vite.config.js Normal file
View File

@@ -0,0 +1,12 @@
import {defineConfig} from "vite"
import react from "@vitejs/plugin-react";
import path from "path";
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
}
});