feat: webpack config

This commit is contained in:
karishmas6
2024-10-24 19:24:02 +05:30
parent 77563d9971
commit cf9e41cd03

15
config-overrides.js Normal file
View File

@@ -0,0 +1,15 @@
/* config-overrides.js */
module.exports = function override(config, env) {
//do stuff with the webpack config...
return {
...config,
resolve: {
...config.resolve,
fallback: {
...config.resolve.fallback,
path: false,
},
},
}
}