1
0
mirror of https://github.com/XFox111/easylogon-web.git synced 2026-07-02 19:52:45 +03:00

major: initial commit

This commit is contained in:
2025-03-26 16:42:06 +00:00
commit 94a3197208
172 changed files with 7524 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import svgr from "vite-plugin-svgr";
// https://vite.dev/config/
export default defineConfig({
plugins:
[
svgr(),
react(),
svgr({
svgrOptions: { exportType: "default", ref: true, svgo: false, titleProp: true },
include: "**/*.svg",
}),
],
build: {
chunkSizeWarningLimit: 700,
rollupOptions: {
output: {
entryFileNames: "assets/[name].js",
assetFileNames: "assets/[name].css",
chunkFileNames: "assets/[name].js",
}
}
}
});