22 lines
390 B
JavaScript
22 lines
390 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
env: {
|
|
HOSTNAME: process.env.HOSTNAME || 'vmx-k3s-01',
|
|
APPVERSION: '1.0.2'
|
|
},
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['mysql2']
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|