25 lines
434 B
TypeScript
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;
|