11 lines
253 B
JavaScript
11 lines
253 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: 'standalone',
|
|
env: {
|
|
NEXT_PUBLIC_BACKEND_URL: process.env.NEXT_PUBLIC_BACKEND_URL || 'https://yann1.ahlgrim.net',
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|