-
Notifications
You must be signed in to change notification settings - Fork 2
/
next.config.js
119 lines (107 loc) · 3.59 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
const SentryWebpackPlugin = require('@sentry/webpack-plugin')
module.exports = {
assetPrefix: process.env.SITE_URL || '',
poweredByHeader: false,
productionBrowserSourceMaps: true,
future: {
webpack5: true
},
async redirects() {
return [
//view index in iframe
{
source: '/:user_name/(.*)-:id(\\d+$)',
has: [{
type: 'header',
key: 'Sec-Fetch-Dest',
value: 'iframe'
},],
permanent: false,
destination: '/:user_name/embed/:id',
},
//user in iframe
{
source: '/:user_name',
has: [{
type: 'header',
key: 'Sec-Fetch-Dest',
value: 'iframe'
},],
permanent: false,
destination: '/:user_name/embed/me',
}
]
},
async rewrites() {
return [
//view
{
source: '/:user_name/(.*)-:id(\\d+$)',
destination: '/:user_name/view/:id',
},
//collection embed/search/etc...
{
source: '/:user_name/(.*)-:id(\\d+)/:section/:path*',
destination: '/:user_name/:section/:id/:path*',
},
]
},
async headers() {
return [
//security
{
source: '/(.*)',
headers: [
{
key: 'Content-Security-Policy',
value: `
default-src *;
script-src 'self' https://*.raindrop.io https://*.sentry.io https://sentry.io https://*.googletagmanager.com https://*.google-analytics.com ${process.env.NODE_ENV === 'development' ? '\'unsafe-inline\' \'unsafe-eval\'' : ''};
style-src 'self' 'unsafe-inline' https://*.raindrop.io;
img-src * blob:;
object-src 'self' up.raindrop.io;
`.replace(/\s+/g, ' ')
},
{
key: 'X-Content-Type-Options',
value: 'nosniff'
}
]
}
]
},
webpack(config, options) {
//sentry
if (!options.isServer)
config.resolve.alias['@sentry/node'] = '@sentry/browser'
config.plugins.push(
new options.webpack.DefinePlugin({
'process.env.NEXT_IS_SERVER': JSON.stringify(options.isServer.toString()),
'process.env.VERCEL_GIT_COMMIT_SHA': JSON.stringify(process.env.VERCEL_GIT_COMMIT_SHA||''),
})
)
if (process.env.VERCEL_GIT_COMMIT_SHA)
config.plugins.push(
new SentryWebpackPlugin({
org: 'oblako-corp',
project: 'public',
authToken: process.env.SENTRY_AUTH_TOKEN, //required in CI environment
release: process.env.VERCEL_GIT_COMMIT_SHA,
include: '.next',
ignore: ['node_modules'],
stripPrefix: ['webpack://_N_E/'],
urlPrefix: `app:///_next`,
})
)
//svg's
config.module.rules.push({
test: /\.svg$/,
oneOf: [
{
use: ['@svgr/webpack']
}
]
})
return config
}
}