Skip to content
This repository was archived by the owner on Feb 22, 2025. It is now read-only.

Commit b0c72ba

Browse files
committed
nextjs config update
1 parent 5ec82e3 commit b0c72ba

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

next.config.js

+9-5
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,30 @@ const runtimeCaching = require("next-pwa/cache")
55
const nextConfig = {
66
reactStrictMode: true,
77

8+
logging: {
9+
fetches: {
10+
fullUrl: true
11+
}
12+
},
13+
814
images: {
915
formats: ["image/avif", "image/webp"],
1016
remotePatterns: [
1117
{
1218
protocol: "https",
1319
hostname: process.env.NEXT_IMAGE_DOMAIN,
14-
// port: "",
1520
pathname: "/sites/default/files/**"
1621
}
17-
],
18-
domains: [process.env.NEXT_IMAGE_DOMAIN]
22+
]
1923
},
2024

2125
i18n,
2226

2327
compiler: {
2428
removeConsole: process.env.NODE_ENV !== "development"
25-
},
29+
}
2630

27-
output: "standalone"
31+
// output: "standalone"
2832
}
2933

3034
const withPWA = require("next-pwa")({

0 commit comments

Comments
 (0)