When i register the partials inside my webpack module handlebars cant find my module see the bellow code:
` // Get Handlebars instance
var Handlebars = require('handlebars-template-loader/runtime');
// Require partial
var partial = require('./episodes.hbs')(data);
// Register partial
Handlebars.registerPartial('episodes.hbs', partial);
var html = require('./episodeSelector.hbs')(data);
`
When i register the partials inside my webpack module handlebars cant find my module see the bellow code:
` // Get Handlebars instance
var Handlebars = require('handlebars-template-loader/runtime');
`