generated from turbo-eth/template-web3-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
45 lines (42 loc) · 998 Bytes
/
next.config.mjs
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
import "./env.mjs"
import withPWA from "next-pwa"
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: [
"avatars.githubusercontent.com",
"app.aave.com",
"images.unsplash.com",
"cloudflare-ipfs.com",
"gateway.ipfs.io",
],
},
env: {
mode: process.env.NODE_ENV,
},
webpack: (config) => {
config.resolve.fallback = { fs: false, net: false, tls: false }
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
resourceQuery: /icon/,
use: ["@svgr/webpack"],
})
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
resourceQuery: { not: [/icon/] },
loader: "next-image-loader",
options: { assetPrefix: "" },
})
return config
},
...withPWA({
dest: "public",
register: true,
skipWaiting: true,
disable: process.env.NODE_ENV === "development",
}),
}
export default nextConfig