Dev and Test run fixed. New Datepicker. Tests fixed. Message bookmarking fixed.

This commit is contained in:
aodulov
2025-12-18 14:06:45 +02:00
parent e9aec9a65d
commit 3a8f132b91
12 changed files with 347 additions and 24 deletions

View File

@@ -6,11 +6,11 @@ export default defineConfig(({ mode }) => {
const env = loadEnv(mode, '.', '');
return {
server: {
port: 3000,
port: 5173,
host: '0.0.0.0',
proxy: {
'/api': {
target: 'http://localhost:3001',
target: `http://localhost:${process.env.BACKEND_PORT || 3200}`,
changeOrigin: true,
secure: false,
}