Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/af858ac4aa1a299d460ca5239fef63ee0385c626 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix chunk IDs and source map file names

(cherry picked from commit bb8fed94eb2c44040031643e8c20ff72de759535)
pull/2704/head
Mark McDowall 2 years ago committed by Bogdan
parent 63ea253a6b
commit af858ac4aa

@ -67,17 +67,13 @@ module.exports = (env) => {
output: {
path: distFolder,
publicPath: '/',
filename: '[name].js',
filename: '[name]-[contenthash].js',
sourceMapFilename: '[file].map'
},
optimization: {
moduleIds: 'deterministic',
chunkIds: 'named',
splitChunks: {
chunks: 'initial',
name: 'vendors'
}
chunkIds: isProduction ? 'deterministic' : 'named'
},
performance: {

Loading…
Cancel
Save