-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.js
More file actions
23 lines (22 loc) · 760 Bytes
/
next.config.js
File metadata and controls
23 lines (22 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/** @type {import('next').NextConfig} */
const nextConfig = {
swcMinify: false,
experimental: {
serverActions: {
bodySizeLimit: "10mb",
},
optimizePackageImports: ["@mantine/core", "@mantine/hooks"],
},
images: {
remotePatterns: [
{ protocol: "https", hostname: "cloudflare-ipfs.com" },
{ protocol: "https", hostname: "avatars.githubusercontent.com" },
{ protocol: "https", hostname: "loremflickr.com" },
{ protocol: "https", hostname: "jjxiydcvcwtbswunystj.supabase.co" },
{ protocol: "https", hostname: "img.clerk.com" },
{ protocol: "https", hostname: "picsum.photos" },
{ protocol: "https", hostname: "swjupfdgeytacaymyrhi.supabase.co" },
],
},
};
module.exports = nextConfig;