-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.config.js
71 lines (70 loc) · 2.08 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
const { withSentryConfig } = require('@sentry/nextjs');
module.exports = withSentryConfig(
{
reactStrictMode: true,
i18n: { locales: ['en-US'], defaultLocale: 'en-US' },
images: {
domains: [
'cdn.substack.com',
'assets.tutorbook.org',
'lh3.googleusercontent.com',
'www.google.com',
],
},
async redirects() {
return [
{
source: '/terms',
destination:
'https://readhammock.notion.site/Terms-of-Service-ab660e15db814a118d908391eac43991',
permanent: true,
},
{
source: '/privacy',
destination:
'https://readhammock.notion.site/Privacy-Policy-4f8a21493d384592a206453492fbce4c',
permanent: true,
},
{
source: '/story',
destination:
'https://readhammock.notion.site/Return-of-the-Newsletter-524563869f6242baaa60250299536654',
permanent: true,
},
{
source: '/changelog',
destination:
'https://readhammock.notion.site/Changelog-565a632fc5e3466d85748a78ddeae8f6',
permanent: true,
},
{
source: '/waitlist',
destination: 'https://form.typeform.com/to/PezpoULN',
permanent: true,
},
{
source: '/try',
destination:
'https://readhammock.notion.site/Hi-we-re-building-Hammock-1d9ac6c2e6004974ac1eafd00a53b4cd',
permanent: true,
},
];
},
webpack(config, { isServer }) {
if (!isServer && process.env.ANALYZE === 'true') {
// Only run the bundle analyzer for the client-side chunks.
// @see {@link https://github.com/vercel/next.js/issues/15481}
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
config.plugins.push(
new BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: './analyze/client.html',
generateStatsFile: true,
})
);
}
return config;
},
},
{ silent: true }
);