Files
shakethefrog/next.config.ts
T
HugeFrog24 c746b2c17f Update deps
2026-03-26 03:35:53 +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);