Files
shakethefrog/next.config.ts
T
HugeFrog24 02bb07e780 Bugfix
2026-04-26 17:40:52 +02: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);