prod build fix

This commit is contained in:
2025-09-15 19:08:06 +02:00
parent 91e86a74de
commit 3c7fc63ca8
3 changed files with 10 additions and 6 deletions

View File

@@ -163,9 +163,6 @@ services:
networks: networks:
- enclava-net - enclava-net
restart: unless-stopped restart: unless-stopped
profiles:
- privatemode
volumes: volumes:
enclava-postgres-data: enclava-postgres-data:

View File

@@ -11,6 +11,13 @@ const nextConfig = {
}, },
experimental: { experimental: {
}, },
webpack: (config) => {
config.resolve.alias = {
...config.resolve.alias,
'@': require('path').resolve(__dirname, 'src'),
};
return config;
},
env: { env: {
NEXT_PUBLIC_BASE_URL: process.env.NEXT_PUBLIC_BASE_URL, NEXT_PUBLIC_BASE_URL: process.env.NEXT_PUBLIC_BASE_URL,
NEXT_PUBLIC_APP_NAME: process.env.NEXT_PUBLIC_APP_NAME || 'Enclava', // Sane default NEXT_PUBLIC_APP_NAME: process.env.NEXT_PUBLIC_APP_NAME || 'Enclava', // Sane default

View File

@@ -2613,9 +2613,9 @@
} }
}, },
"node_modules/axios": { "node_modules/axios": {
"version": "1.11.0", "version": "1.12.2",
"resolved": "https://registry.npmjs.org/axios/-/axios-1.11.0.tgz", "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz",
"integrity": "sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==", "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"follow-redirects": "^1.15.6", "follow-redirects": "^1.15.6",