Only apply CDN fix to webpack in prod

This commit is contained in:
Eric Bailey
2025-01-15 13:33:54 -06:00
parent beb1f2367a
commit f6b26b91ce
+2 -2
View File
@@ -28,10 +28,10 @@ module.exports = async function (env, argv) {
] ]
if (env.mode === 'development') { if (env.mode === 'development') {
config.plugins.push(new ReactRefreshWebpackPlugin()) config.plugins.push(new ReactRefreshWebpackPlugin())
} } else {
// Support static CDN for chunks // Support static CDN for chunks
config.output.publicPath = 'auto' config.output.publicPath = 'auto'
}
if (GENERATE_STATS || OPEN_ANALYZER) { if (GENERATE_STATS || OPEN_ANALYZER) {
config.plugins.push( config.plugins.push(