Files
mamad-app/next.config.mjs
2025-06-23 15:19:28 +03:00

28 lines
499 B
JavaScript

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