29827/frontend/next.config.mjs
2025-03-12 13:21:00 +00:00

55 lines
958 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,
devIndicators: {
buildActivityPosition: 'bottom-left',
},
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
async rewrites() {
return [
{
source: '/home',
destination: '/web_pages/home',
},
{
source: '/services',
destination: '/web_pages/services',
},
{
source: '/products',
destination: '/web_pages/products',
},
{
source: '/pricing',
destination: '/web_pages/pricing',
},
{
source: '/contact',
destination: '/web_pages/contact',
},
];
},
};
export default nextConfig;