ACPlayer_Webpage/next.config.ts

25 lines
434 B
TypeScript

/** @type {import('next').NextConfig} */
const nextConfig = {
// Use standalone output for server deployment
output: 'standalone',
// Image optimization
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: 'openwheels.racing',
},
],
},
// Type checking during build
typescript: {
ignoreBuildErrors: false,
},
};
module.exports = nextConfig;