11 lines
231 B
JavaScript
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);
|