Add files via upload

This commit is contained in:
Michilis
2025-07-19 09:31:12 +02:00
committed by GitHub
parent c94a4d8c46
commit 9fdbc127e7
41 changed files with 8978 additions and 1 deletions

22
vite.config.ts Normal file
View File

@@ -0,0 +1,22 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
define: {
global: 'globalThis',
},
server: {
port: 3000,
},
build: {
rollupOptions: {
output: {
manualChunks: {
ndk: ['@nostr-dev-kit/ndk'],
vendor: ['react', 'react-dom', 'react-router-dom'],
},
},
},
},
})