-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
44 lines (40 loc) · 1.29 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
// This file sets a custom webpack configuration to use your Next.js app
// with Sentry.
// https://nextjs.org/docs/api-reference/next.config.js/introduction
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
// const { withSentryConfig } = require("@sentry/nextjs");
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
compiler: {
styledComponents: true,
// removeConsole: {
// exclude: ["error"],
// },
},
images: {
// formats: ["image/avif", "image/webp"],
remotePatterns: [
{
protocol: "https",
hostname: "assets.vercel.com",
port: "",
pathname: "/image/upload/**",
},
{
protocol: "https",
hostname: "lh3.googleusercontent.com",
port: "",
pathname: "**",
},
],
},
};
module.exports = nextConfig;
// Sentry
// module.exports = withSentryConfig(module.exports, { silent: true }, { hideSourcemaps: true });
// Next bundle analyzer
// const withBundleAnalyzer = require("@next/bundle-analyzer")({
// enabled: process.env.ANALYZE === "true",
// });
// module.exports = withBundleAnalyzer(module.exports);