32823/frontend/next.config.mjs
Flatlogic Bot ed50c46e12 2
2025-07-15 10:29:15 +00:00

29 lines
435 B
JavaScript

/**
* @type {import('next').NextConfig}
*/
const output = 'export';
const nextConfig = {
trailingSlash: true,
distDir: 'build',
output,
basePath: "",
devIndicators: {
position: 'bottom-left',
},
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
}
export default nextConfig