Files
next-boilerplate/next.config.ts
Felix Schulze 1afd363bac
Some checks failed
Lint / Lint (push) Has been cancelled
Update next.config.ts
2025-12-09 14:07:29 +01:00

13 lines
224 B
TypeScript

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