Files
mamad-app/next.config.mjs

27 lines
475 B
JavaScript

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