-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
39 lines (36 loc) · 899 Bytes
/
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
const withPWAInit = require("next-pwa");
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})
const isDev = process.env.NODE_ENV !== "production";
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
i18n: {
locales: ["en"],
defaultLocale: "en",
},
experimental: {
appDir: true,
},
}
const withPWA = withPWAInit({
dest: 'public',
disable: isDev,
exclude: [
({ asset, compilation }) => {
if (
asset.name.startsWith("server/") ||
asset.name.match(/^((app-|^)build-manifest\.json|react-loadable-manifest\.json)$/)
) {
return true;
}
if (isDev && !asset.name.startsWith("static/runtime/")) {
return true;
}
return false;
}
],
});
module.exports = withPWA(withBundleAnalyzer(nextConfig));