feat: initial release - MorkNetVizualiser v1.0

This commit is contained in:
2026-06-07 19:31:43 +02:00
commit 5f8a43e652
19 changed files with 2954 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
build: {
outDir: 'build',
},
server: {
port: 3000,
},
esbuild: {
loader: 'jsx',
include: /src\/.*\.[jt]sx?$/,
},
})