forked from panaverse-io/energy-website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
next.config.js
46 lines (45 loc) · 970 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.dribbble.com",
},
{
protocol: "https",
hostname: "plus.unsplash.com",
},
{
protocol: "https",
hostname: "images.unsplash.com",
},
{
protocol: "https",
hostname: "img.freepik.com",
},
{
protocol: "https",
hostname: "i.pinimg.com",
},
{
protocol: "https",
hostname: "nilufar.com",
},
{
protocol: "https",
hostname: "mir-s3-cdn-cf.behance.net",
},
{
protocol: "https",
hostname: "cdn.sanity.io",
},
],
},
env: {
NOTION_DATABASE_ID: "51b1c5db34e24dbb8e38ff01139a6e07",
NOTION_INTERNAL_INTEGRATION_TOKEN:
"secret_N0XxyyOsDhmmLImH41H26A8mVq8AAMeh2qSBYIt3L7Z",
},
};
module.exports = nextConfig;