Sign in
bazel
/
continuous-integration
/
811da5a79e1ac4b0615f3be2626d4dc7a7a18888
/
.
/
dashboard
/
client
/
next.config.js
blob: 18041313df5509f7d1f0f9ab2172f0f8f9e82c58 [
file
] [
log
] [
blame
]
const
withBundleAnalyzer
=
require
(
"@next/bundle-analyzer"
)({
enabled
:
process
.
env
.
ANALYZE
===
"true"
,
});
module
.
exports
=
withBundleAnalyzer
({
serverRuntimeConfig
:
{
SERVER_URL
:
process
.
env
.
SERVER_URL
||
"http://localhost:8080"
,
},
});