Get env variables correctly
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
tobias 2024-06-18 08:30:03 +02:00
parent a169c111c2
commit b437f7993d

View File

@ -9,8 +9,8 @@ const nextConfig = {
output: 'standalone', output: 'standalone',
env: { env: {
customKey: 'my-value', customKey: 'my-value',
PORT: env.process.PORT, PORT: process.env.PORT,
HOSTNAME: env.process.HOSTNAME, HOSTNAME: process.env.HOSTNAME,
}, },
} }