Files
routstr-core/ui/next.config.ts
T
2025-10-24 14:27:47 +02:00

12 lines
188 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
output: 'export',
trailingSlash: true,
images: {
unoptimized: true,
},
};
export default nextConfig;