Files
mamad-app/next.config.mjs
2026-01-16 19:32:08 +02:00

26 lines
423 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
APPVERSION: '1.1.2'
},
experimental: {
serverComponentsExternalPackages: ['mysql2']
},
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
},
swcMinify: true,
poweredByHeader: false,
async rewrites() {
return []
},
}
export default nextConfig