Weektab Webmail

This commit is contained in:
2026-02-23 11:45:18 +01:00
parent 0eef705ac9
commit c27e2da6ae
14 changed files with 3864 additions and 0 deletions

15
nx-webmail/vite.config.js Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
'/api': 'http://localhost:3001'
}
},
build: {
outDir: 'dist'
}
});