nextjs-config-yamsafer
v5.0.9
Published
nextjs shared configs
Readme
Exteacted Common nextjs configurations that should go inside next.config.js
Usage
Inside your project's next.config.js
module.exports = require('nextjs-config-yamsafer')();To extend it with project's specific configurations
module.exports = require('nextjs-config-yamsafer')({
webpack(config, options) {
config.bail = true;
return config;
}
});