16 lines
398 B
JavaScript
Executable File
16 lines
398 B
JavaScript
Executable File
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
eslint: {
|
|
ignoreDuringBuilds: true
|
|
},
|
|
publicRuntimeConfig: {
|
|
// remove private variables from processEnv
|
|
processEnv: Object.fromEntries(Object.entries(process.env).filter(([key]) => key.includes('NEXT_PUBLIC_')))
|
|
},
|
|
output: 'standalone'
|
|
};
|
|
|
|
module.exports = nextConfig;
|