mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 20:19:12 +00:00
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
module.exports = {
|
|
webpack: config => {
|
|
// Fixes npm packages that depend on `fs` module
|
|
config.node = {
|
|
fs: 'empty'
|
|
}
|
|
|
|
return config
|
|
}
|
|
}
|