mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-22 13:44:05 +00:00
Merge pull request #15514 from overleaf/jpa-single-webpack-runtime
[web] enable webpack option runtimeChunk=single in dev-env GitOrigin-RevId: 905b362496fc5df896632db920c91aee75c30b46
This commit is contained in:
parent
d62f2c6a40
commit
1f56441184
2 changed files with 12 additions and 2 deletions
|
@ -171,8 +171,16 @@ module.exports = function (webRouter, privateApiRouter, publicApiRouter) {
|
|||
return staticFilesBase + (webpackManifest[jsFile] || '/' + jsFile)
|
||||
}
|
||||
|
||||
let runtimeEmitted = false
|
||||
const runtimeChunk = webpackManifest['runtime.js']
|
||||
res.locals.entrypointScripts = function (entrypoint) {
|
||||
const chunks = getWebpackAssets(entrypoint, 'js')
|
||||
// Each "entrypoint" contains the runtime chunk as imports.
|
||||
// Loading the entrypoint twice results in broken execution.
|
||||
let chunks = getWebpackAssets(entrypoint, 'js')
|
||||
if (runtimeEmitted) {
|
||||
chunks = chunks.filter(chunk => chunk !== runtimeChunk)
|
||||
}
|
||||
runtimeEmitted = true
|
||||
return chunks.map(chunk => staticFilesBase + chunk)
|
||||
}
|
||||
|
||||
|
|
|
@ -93,6 +93,8 @@ module.exports = merge(base, {
|
|||
},
|
||||
|
||||
optimization: {
|
||||
runtimeChunk: process.env.WEBPACK_RUNTIME_CHUNK || false,
|
||||
runtimeChunk: {
|
||||
name: 'runtime',
|
||||
},
|
||||
},
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue