-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
55 lines (47 loc) · 1.39 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
const { withSentryConfig } = require('@sentry/nextjs')
const loaderUtils = require('loader-utils');
const path = require('path');
/** @type {import('next').NextConfig} */
const timestamp = new Date().getTime();
const hashOnlyIdent = (context, _, exportName) =>
"UwU_"+loaderUtils
.getHashDigest(
Buffer.from(
`filePath:${path
.relative(context.rootContext, context.resourcePath)
.replace(/\\+/g, '/')}#className:${exportName}#BuildTime:${timestamp}`,
),
'md4',
'hex',
6,
).replace(/^(-?\d|--)/, '_$1');
const nextConfig = {
reactStrictMode: true,
sentry: {
hideSourceMaps: true,
tunnelRoute: "/stunnel",
},
webpack: (config, {dev}) => {
const rules = config.module.rules
.find((rule) => typeof rule.oneOf === 'object')
.oneOf.filter((rule) => Array.isArray(rule.use));
if (!dev)
rules.forEach((rule) => {
rule.use.forEach((moduleLoader) => {
if (
moduleLoader.loader?.includes('css-loader') &&
!moduleLoader.loader?.includes('postcss-loader')
)
moduleLoader.options.modules.getLocalIdent = hashOnlyIdent;
});
});
return config;
},
poweredByHeader: false,
}
const sentryWebpackOptions = {
org: "furrynet",
project: "ela-survey",
silent: true,
}
module.exports = withSentryConfig(nextConfig, sentryWebpackOptions);