Skip to content

Commit 5e2a23f

Browse files
authored
Add assetPrefix to next config (e2b-dev#569)
This pr adds `assetPrefix` property to the `next.config ` for production builds. This makes sure that absolute urls instead of relative ones are used on asset urls in the html markup, which makes it possible to proxy this app from our upcoming new next app.
2 parents d17bdaa + 8903a8b commit 5e2a23f

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

apps/web/next.config.mjs

+19-13
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function getFilesHash(rootPath) {
3131
shasum.update(delimiter)
3232
}
3333

34-
fsWalk.walkSync(rootPath, { stats: true }).forEach(e => {
34+
fsWalk.walkSync(rootPath, { stats: true }).forEach((e) => {
3535
if (!e.stats.isDirectory()) {
3636
if (e.path.includes('/node_modules/')) return // ignore node_modules which may contain symlinks
3737
const content = fs.readFileSync(e.path, 'utf8')
@@ -48,17 +48,23 @@ const codeSnippetsDir = path.resolve('./src/code')
4848
const nextConfig = {
4949
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'mdx'],
5050
basePath: '',
51+
assetPrefix:
52+
process.env.NODE_ENV === 'production'
53+
? `https://${process.env.VERCEL_URL}`
54+
: undefined,
5155
headers: async () => [
5256
{
5357
source: '/:path*',
54-
headers: [{
55-
// config to prevent the browser from rendering the page inside a frame or iframe and avoid clickjacking http://en.wikipedia.org/wiki/Clickjacking
56-
key: 'X-Frame-Options',
57-
value: 'SAMEORIGIN'
58-
}],
59-
}
58+
headers: [
59+
{
60+
// config to prevent the browser from rendering the page inside a frame or iframe and avoid clickjacking http://en.wikipedia.org/wiki/Clickjacking
61+
key: 'X-Frame-Options',
62+
value: 'SAMEORIGIN',
63+
},
64+
],
65+
},
6066
],
61-
webpack: config => {
67+
webpack: (config) => {
6268
const codeFilesHash = getFilesHash(codeSnippetsDir)
6369
config.cache.version = config.cache.version + delimiter + codeFilesHash
6470
return config
@@ -71,9 +77,9 @@ const nextConfig = {
7177
destination: 'https://app.posthog.com/:path*',
7278
// BEWARE: setting basePath will break the analytics proxy
7379
},
74-
]
80+
],
7581
}
76-
}
82+
},
7783
}
7884

7985
export default withSearch(
@@ -91,7 +97,7 @@ export default withSearch(
9197
tunnelRoute: '/monitoring',
9298
hideSourceMaps: true,
9399
disableLogger: true,
94-
},
95-
),
96-
),
100+
}
101+
)
102+
)
97103
)

0 commit comments

Comments
 (0)