Alpha stage commit

This commit is contained in:
2026-07-02 21:04:05 +02:00
parent c03b183dfb
commit abed21be21
136 changed files with 15531 additions and 15 deletions

18
apps/web/vite.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import { fileURLToPath } from 'node:url';
import { dirname, resolve } from 'node:path';
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
const here = dirname(fileURLToPath(import.meta.url));
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@pikebacker/shared': resolve(here, '../../packages/shared/src/index.ts')
}
},
server: {
port: 5173
}
});