mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-26 06:49:18 +01:00
11 lines
275 B
JavaScript
11 lines
275 B
JavaScript
exports.loadContext = function (callback) {
|
|
let context = require.context('./pages', true)
|
|
if (module.hot) {
|
|
module.hot.accept(context.id, () => {
|
|
context = require.context('./pages', true)
|
|
return callback(context)
|
|
})
|
|
}
|
|
return callback(context)
|
|
}
|