-
Notifications
You must be signed in to change notification settings - Fork 28
/
next.config.js
171 lines (167 loc) · 4.8 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/* eslint-disable import/order */
/* eslint-disable no-param-reassign */
/* eslint-disable global-require */
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
const redirectsList = require('./public/redirects.json');
const nextTranslate = require('next-translate-plugin');
const externalDevDomain = process.env.VERCEL_ENV !== 'production' ? 'http://localhost:9999' : '';
const securityHeaders = [
{
key: 'X-Frame-Options',
value: 'SAMEORIGIN',
},
{
key: 'Content-Security-Policy',
value: `frame-ancestors 'self' ${externalDevDomain}`,
},
];
const removeImports = require('next-remove-imports')();
module.exports = removeImports(nextTranslate(withBundleAnalyzer({
// rest of config here
// i18n,
async headers() {
return [
{
source: '/:path*',
headers: securityHeaders,
},
];
},
async rewrites() {
return [
{
source: '/robots.txt',
destination: '/api/robots',
},
];
},
async redirects() {
return [
...redirectsList,
{
source: '/interactive-exercises/:slug',
destination: '/interactive-exercise/:slug',
permanent: true,
},
{
source: '/interactive-exercise',
destination: '/interactive-exercises',
permanent: true,
},
{
source: '/projects',
destination: '/interactive-coding-tutorials',
permanent: true,
},
{
source: '/project',
destination: '/interactive-coding-tutorials',
permanent: true,
},
{
source: '/lesson',
destination: '/lessons',
permanent: true,
},
{
source: '/lessons/:slug',
destination: '/lesson/:slug',
permanent: true,
},
{
source: '/interactive-exercise',
destination: '/interactive-exercises',
permanent: true,
},
{
source: '/interactive-exercises/:slug',
destination: '/interactive-exercise/:slug',
permanent: true,
},
{
source: '/lessons/technology/:slug',
destination: '/technology/:slug',
permanent: true,
},
{
source: '/interactive-exercises/technology/:slug',
destination: '/technology/:slug',
permanent: true,
},
{
source: '/interactive-coding-tutorials/technology/:slug',
destination: '/technology/:slug',
permanent: true,
},
{
source: '/how-to/technology/:slug',
destination: '/technology/:slug',
permanent: true,
},
];
},
// swcMinify: false,
reactStrictMode: true,
trailingSlash: false,
webpack: (config) => config,
compiler: {
// ssr and displayName are configured by default
styledComponents: true,
},
serverRuntimeConfig: {
// Will only be available on the server side
BREATHECODE_HOST: process.env.BREATHECODE_HOST,
GITHUB_TOKEN: process.env.GITHUB_TOKEN, // Pass through env variables
BC_ACADEMY_TOKEN: process.env.BC_ACADEMY_TOKEN,
SYLLABUS: process.env.SYLLABUS,
TAG_MANAGER_KEY: process.env.TAG_MANAGER_KEY,
GOOGLE_GEO_KEY: process.env.GOOGLE_GEO_KEY,
CAPTCHA_KEY: process.env.CAPTCHA_KEY,
},
publicRuntimeConfig: {
// Will be available on both server and client
BREATHECODE_HOST: process.env.BREATHECODE_HOST,
NEXT_PUBLIC_ID: process.env.NEXT_PUBLIC_ID,
BC_ACADEMY_TOKEN: process.env.BC_ACADEMY_TOKEN,
SYLLABUS: process.env.SYLLABUS,
TAG_MANAGER_KEY: process.env.TAG_MANAGER_KEY,
GOOGLE_GEO_KEY: process.env.GOOGLE_GEO_KEY,
CAPTCHA_KEY: process.env.CAPTCHA_KEY,
RIGOBOT_HASH: process.env.RIGOBOT_HASH,
BREATHECODE_PAYMENT: process.env.BREATHECODE_PAYMENT,
},
images: {
// Whitelist for image providers
domains: [
'assets.vercel.com',
'github.com',
'raw.githubusercontent.com',
'breathecode.herokuapp.com',
'avatars.githubusercontent.com',
'storage.googleapis.com',
'images.prismic.io',
'images.unsplash.com',
'refreshmiami.com',
],
// formats: ['image/avif', 'image/webp'],
},
env: {
BREATHECODE_HOST: process.env.BREATHECODE_HOST,
BC_ACADEMY_TOKEN: process.env.BC_ACADEMY_TOKEN,
SYLLABUS: process.env.SYLLABUS,
TAG_MANAGER_KEY: process.env.TAG_MANAGER_KEY,
GOOGLE_GEO_KEY: process.env.GOOGLE_GEO_KEY,
CAPTCHA_KEY: process.env.CAPTCHA_KEY,
RIGOBOT_HASH: process.env.RIGOBOT_HASH,
BREATHECODE_PAYMENT: process.env.BREATHECODE_PAYMENT,
VERCEL_ENV: process.env.VERCEL_ENV,
PRISMIC_REF: process.env.PRISMIC_REF,
PRISMIC_API: process.env.PRISMIC_API,
WHITE_LABEL_ACADEMY: process.env.WHITE_LABEL_ACADEMY,
DOMAIN_NAME: process.env.DOMAIN_NAME,
BASE_PLAN: process.env.BASE_PLAN,
RIGOBOT_HOST: process.env.RIGOBOT_HOST,
},
})));