apps/web: again trying to fix environment variables

This commit is contained in:
vchikalkin 2023-12-23 15:50:07 +03:00
parent 780794c53f
commit f611e561ac
2 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,7 @@ USER nextjs
COPY --from=installer /app/apps/web/next.config.js .
COPY --from=installer /app/apps/web/package.json .
COPY .env .env
# Automatically leverage output traces to reduce image size
# https://nextjs.org/docs/advanced-features/output-file-tracing

View File

@ -34,6 +34,7 @@ const nextConfig = {
...favicons.map((fileName) => buildFaviconRewrite(`/${fileName}`)),
];
},
env,
};
module.exports = nextConfig;