handlebars-template-loader
handlebars-template-loader copied to clipboard
The partial episodes.hbs could not be found
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);
`