mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-25 22:39:41 +01:00
11 lines
302 B
JavaScript
11 lines
302 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)
|
|
}
|