Files
mamad-app/next.config.mjs

26 lines
423 B
JavaScript

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