Files
next-boilerplate/next.config.ts
Felix Schulze 1474635605
Some checks failed
Lint / Lint (push) Failing after 11s
typed routes
2025-08-23 14:37:13 +02:00

12 lines
200 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
/* config options here */
typedRoutes: true,
images: {
formats: ['image/avif'],
},
};
export default nextConfig;