We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a116ac0 commit 33c9965Copy full SHA for 33c9965
next.config.mjs
@@ -22,8 +22,10 @@ const nextConfig = withNextIntl({
22
hostname: backendUrl.hostname,
23
},
24
{
25
- protocol: platformUrl.protocol.slice(0, -1),
26
- hostname: platformUrl.hostname
+ protocol: platformUrl.protocol.replace(':', ''),
+ hostname: platformUrl.hostname,
27
+ port: platformUrl.port || '', // empty string if no port
28
+ pathname: '/**',
29
30
],
31
0 commit comments