-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
32 lines (31 loc) · 883 Bytes
/
next.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
serverActions: {
allowedOrigins: ["app.localhost:3000"],
},
},
images: {
dangerouslyAllowSVG: true,
domains: [
"ha3zldst15jisuvj.public.blob.vercel-storage.com",
"public.blob.vercel-storage.com",
"img.clerk.com",
"res.cloudinary.com",
"images.unsplash.com",
"cdn.pixabay.com",
"pbs.twimg.com",
"abs.twimg.com",
"dresume.vercel.app",
"dresume.me",
"utfs.io",
"images.clerk.dev",
"illustrations.popsy.co",
"api.producthunt.com",
"avatars.githubusercontent.com",
"cdn.jsdelivr.net"
],
},
};
module.exports = nextConfig;