generated from turbo-eth/template-web3-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
next.config.js
39 lines (38 loc) · 951 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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['avatars.githubusercontent.com', 'images.unsplash.com', 'nft-snaps.infura-ipfs.io'],
},
swcMinify: true,
env: {
mode: process.env.NODE_ENV,
NEXT_PUBLIC_MODE: true,
},
experimental: {
appDir: true,
fontLoaders: [
{
loader: '@next/font/google',
options: { subsets: ['latin'] },
},
],
},
webpack: (config, { buildId, dev, isServer, defaultLoaders, nextRuntime, webpack }) => {
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
},
}
module.exports = nextConfig