neroshitron/next.config.js

10 lines
157 B
JavaScript
Raw Normal View History

2024-05-21 23:04:57 -04:00
module.exports = function (name, { defaultConfig }) {
let config = {
...defaultConfig,
// ...your configuration
}
return {
2024-05-23 14:32:21 -04:00
...config
2024-05-21 23:04:57 -04:00
}
}