Package Exports
- laravel-mix-handlebars
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (laravel-mix-handlebars) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
laravel-mix-handlebars plugin for Laravel-Mix
With this plugin you can use Handlebars and Handlebars-Layout with Laravel-Mix.
Install:
$ npm install --save-dev laravel-mix-handlebars
or
$ yarn add --dev laravel-mix-handlebars
Usage:
in your webpack.mix.js
:
const mix = require('laravel-mix');
require('laravel-mix-handlebars');
/// mix.handlebars('your source folder', 'your dist or public folder', {your vars})
mix.handlebars('src/', 'dist/');
Note:
- The file extension must be
.hbs
. - Partials must begin with an underscore so that they are recognized as partials.
_myPartial.hbs
.