-1👍
✅
Fixed by replace from true
to false
👍🏼
from const srcContext = require.context('../../src', true, /^\.\/(?!main(\.js)?$)/)
to const srcContext = require.context('../../src', false, /^\.\/(?!main(\.js)?$)/)
Source:stackexchange.com