handlebars-template-loader icon indicating copy to clipboard operation
handlebars-template-loader copied to clipboard

The partial episodes.hbs could not be found

Open NiiMER opened this issue 8 years ago • 0 comments

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);

`

NiiMER avatar Oct 25 '16 14:10 NiiMER