15 lines
419 B
JavaScript
15 lines
419 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// output: 'standalone', // Consider this if you want a smaller Docker image, requires Next.js 12.2+
|
|
|
|
// Configure images if using them from external domains
|
|
images: {
|
|
// domains: ['example.com'], // Add your image domains here if needed
|
|
},
|
|
|
|
// Add any other configurations needed
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|