-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.js
More file actions
25 lines (24 loc) · 879 Bytes
/
next.config.js
File metadata and controls
25 lines (24 loc) · 879 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
25
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'export',
images: {
unoptimized: true,
remotePatterns: [
{ protocol: 'https', hostname: 'assets.st-note.com' },
{ protocol: 'https', hostname: 'prcdn.freetls.fastly.net' },
{ protocol: 'https', hostname: 'prtimes.jp' },
{ protocol: 'https', hostname: 'raw.githubusercontent.com' },
{ protocol: 'https', hostname: 's3.*.amazonaws.com' },
],
},
env: {
NEXT_PUBLIC_AIRTABLE_PAT: process.env.NEXT_PUBLIC_AIRTABLE_PAT,
NEXT_PUBLIC_AIRTABLE_BASE_INQUIRYFORM:
process.env.NEXT_PUBLIC_AIRTABLE_BASE_INQUIRYFORM,
NEXT_PUBLIC_AIRTABLE_TABLE_INQUIRYFORM:
process.env.NEXT_PUBLIC_AIRTABLE_TABLE_INQUIRYFORM,
NEXT_PUBLIC_JSONLINK_API_KEY: process.env.NEXT_PUBLIC_JSONLINK_API_KEY,
},
};
module.exports = nextConfig;