mirror of
https://github.com/D4M13N-D3V/neroshitron.git
synced 2025-03-14 10:05:04 +00:00
10 lines
157 B
JavaScript
10 lines
157 B
JavaScript
|
|
module.exports = function (name, { defaultConfig }) {
|
|
let config = {
|
|
...defaultConfig,
|
|
// ...your configuration
|
|
}
|
|
return {
|
|
...config
|
|
}
|
|
} |