Files
pieced-portal/next.config.mjs
2026-04-10 21:56:31 +02:00

12 lines
265 B
JavaScript

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