-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnext.config.ts
More file actions
24 lines (21 loc) · 838 Bytes
/
next.config.ts
File metadata and controls
24 lines (21 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin("./i18n.ts");
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{ protocol: "https", hostname: "dgzmokcshopxlsimyjqx.supabase.co", port: "", pathname: "/**" },
{ protocol: "https", hostname: "cdn.discordapp.com", port: "", pathname: "/**" },
{ protocol: "https", hostname: "media.discordapp.net", port: "", pathname: "/**" },
{ protocol: "https", hostname: "i.scdn.co", port: "", pathname: "/**" },
{ protocol: "https", hostname: "cdn.simplist.blog", port: "", pathname: "/**" }
]
},
experimental: {
authInterrupts: true
},
outputFileTracingIncludes: {
registry: ["./registry/**/*"],
},
};
export default withNextIntl(nextConfig);