21 lines
527 B
JavaScript
21 lines
527 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Enable output.standalone to create a standalone build
|
|
// This is recommended for deployments to containerized environments
|
|
output: 'export',
|
|
|
|
// Set to true for improved page load performance
|
|
swcMinify: true,
|
|
|
|
// Configure images if using them from external domains
|
|
images: {
|
|
unoptimized: true, // For static export
|
|
domains: [],
|
|
},
|
|
|
|
// Add any other configurations needed
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|