mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
module.exports = {
|
|
target: 'serverless',
|
|
webpack: config => {
|
|
// Fixes npm packages that depend on `fs` module
|
|
config.node = {
|
|
fs: 'empty',
|
|
};
|
|
|
|
return config;
|
|
},
|
|
};
|