12 lines
265 B
JavaScript
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);
|