feat: Implement AI Chat Agent, Email Notifications, and UI enhancements
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-12-12 08:35:48 +01:00
parent ccfb674318
commit 5d8976b1cd
58 changed files with 7867 additions and 844 deletions
+5 -2
View File
@@ -7,11 +7,9 @@ import { VitePWA } from 'vite-plugin-pwa';
export default defineConfig({
plugins: [
react(),
react(),
// VitePWA({...}),
runtimeErrorOverlay(),
runtimeErrorOverlay(),
...(process.env.NODE_ENV !== "production" &&
process.env.REPL_ID !== undefined
? [
@@ -29,11 +27,16 @@ export default defineConfig({
},
},
root: path.resolve(import.meta.dirname, "client"),
base: process.env.VITE_BASE_PATH || "/",
build: {
outDir: path.resolve(import.meta.dirname, "dist/public"),
emptyOutDir: true,
},
server: {
host: "0.0.0.0",
hmr: process.env.HMR_PORT
? { clientPort: parseInt(process.env.HMR_PORT) }
: undefined,
fs: {
strict: true,
deny: ["**/.*"],