lomavuokraus/next.config.mjs
2025-11-24 17:15:20 +02:00

9 lines
161 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
typedRoutes: true
}
};
export default nextConfig;