16 lines
371 B
TypeScript
16 lines
371 B
TypeScript
import type { NextConfig } from "next";
|
|
import createNextIntlPlugin from "next-intl/plugin";
|
|
|
|
const withNextIntl = createNextIntlPlugin("./src/lib/i18n/request.ts");
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: "https", hostname: "cdn.sanity.io" },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default withNextIntl(nextConfig);
|