Files
pieced-portal/next.config.mjs
2026-04-09 22:16:22 +02:00

11 lines
231 B
JavaScript

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