22 lines
517 B
JavaScript
22 lines
517 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: 'standalone',
|
|
env: {
|
|
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL,
|
|
},
|
|
// Ignore build errors for pages that require client-side only rendering
|
|
typescript: {
|
|
ignoreBuildErrors: false,
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: false,
|
|
},
|
|
// Skip static page generation errors for client-only pages
|
|
experimental: {
|
|
missingSuspenseWithCSRBailout: false,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|