-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
68 lines (61 loc) · 1.78 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
/** @type {import('next').NextConfig} */
const orgId = process.env.NEXT_PUBLIC_PLANNER_ORG_ID;
const nextConfig = {
optimizeFonts: false,
output: 'standalone',
async headers() {
return [
{
source: '/widget/:path*',
headers: [
{
key: 'Cache-Control',
value:
process.env.NODE_ENV == 'production'
? 'public, max-age=604800, stale-while-revalidate=86400'
: 'no-cache',
},
],
},
];
},
webpack(config) {
config.resolve.alias = {
...config.resolve.alias,
'@atb/theme/theme.css': `@atb-as/theme/lib/generated/themes/${orgId}-theme/theme.css`,
'@atb/theme/theme.module.css': `@atb-as/theme/lib/generated/themes/${orgId}-theme/theme.module.css`,
'@atb/theme/typography.css': '@atb-as/theme/lib/generated/typography.css',
'@atb/theme/typography.module.css':
'@atb-as/theme/lib/generated/typography.module.css',
};
const oneOf = config.module.rules.find(
(rule) => typeof rule.oneOf === 'object',
);
if (oneOf) {
const moduleCssRule = oneOf.oneOf.find(
(rule) => regexEqual(rule.test, /\.module\.css$/),
// regexEqual(rule.test, /\.module\.(scss|sass)$/)
);
if (moduleCssRule) {
const cssLoader = moduleCssRule.use.find(({ loader }) =>
loader.includes('css-loader'),
);
if (cssLoader) {
cssLoader.options.modules.mode = 'local';
}
}
}
return config;
},
};
module.exports = nextConfig;
const regexEqual = (x, y) => {
return (
x instanceof RegExp &&
y instanceof RegExp &&
x.source === y.source &&
x.global === y.global &&
x.ignoreCase === y.ignoreCase &&
x.multiline === y.multiline
);
};