-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
47 lines (42 loc) · 1.02 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
/** @type {import('next').NextConfig} */
const path = require("path");
const CopyPlugin = require("copy-webpack-plugin");
const nextConfig = {
reactStrictMode: false,
webpack: (config) => {
config.plugins.push(
new CopyPlugin({
patterns: [
{
from: "node_modules/leaflet/dist/images",
to: path.resolve(__dirname, "public", "leaflet", "images"),
},
],
})
);
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
use: ["@svgr/webpack"],
});
return config;
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "ipfs.io",
},
],
},
typescript: {
ignoreBuildErrors: process.env.ENVIRONMENT === "localhost-tests",
},
eslint: {
ignoreDuringBuilds: process.env.ENVIRONMENT === "localhost-tests",
},
};
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
});
module.exports = withBundleAnalyzer(nextConfig);