-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.js
More file actions
40 lines (37 loc) · 1010 Bytes
/
next.config.js
File metadata and controls
40 lines (37 loc) · 1010 Bytes
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
const path = require('path');
const possible_locale = ["en", "zh"]
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ["page.tsx"],
i18n: {
locales: possible_locale,
defaultLocale: "en"
},
publicRuntimeConfig: {
locales: possible_locale
},
/**
* Disable module CSS,
* from "https://stackoverflow.com/questions/67934463/how-to-turn-off-css-module-feature-in-next-js".
*/
webpack(config)
{
config.module.rules.forEach(
(rule) =>
{
const { oneOf } = rule;
if (oneOf)
{
oneOf.forEach((one) =>
{
if (!`${one.issuer?.and}`.includes('_app')) return;
one.issuer.and = [path.resolve(__dirname)];
});
}
}
)
return config;
},
reactStrictMode: true,
}
module.exports = nextConfig