Files
shakethefrog/next.config.ts
T
HugeFrog24 33af88d79d Dep upd
2026-04-25 14:00:45 +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);