1
0
mirror of https://github.com/alexandrev/xslt-lab.git synced 2026-09-20 12:33:14 +00:00

Add frontend React app

This commit is contained in:
2025-07-01 09:34:58 +02:00
parent 3268dbca4e
commit 09a8f99466
8 changed files with 276 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
},
});