29761/frontend/next.config.mjs
2025-03-10 09:46:52 +00:00

52 lines
882 B
JavaScript

/**
* @type {import('next').NextConfig}
*/
const output = process.env.NODE_ENV === 'production' ? 'export' : 'standalone';
const nextConfig = {
trailingSlash: true,
distDir: 'build',
output,
basePath: '',
swcMinify: false,
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
async rewrites() {
return [
{
source: '/home',
destination: '/web_pages/home',
},
{
source: '/services',
destination: '/web_pages/services',
},
{
source: '/pricing',
destination: '/web_pages/pricing',
},
{
source: '/contact',
destination: '/web_pages/contact',
},
{
source: '/faq',
destination: '/web_pages/faq',
},
];
},
};
export default nextConfig;