Files
shakethefrog/next.config.ts
HugeFrog24 39cbf58dbd RCE fix
2025-12-12 12:25:07 +01:00

11 lines
241 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
output: 'standalone'
};
export default withNextIntl(nextConfig);