Package Exports
- pug-html-loader
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 (pug-html-loader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Pug HTML loader for webpack
Installation
npm install pug-html-loader
Usage
In your sources:
var json = require('./file.pug')
// => returns file.pug content as html compiled string
In your webpack.config.js file:
module.exports = {
// your config settings ...
module: [
//your modules...
loaders: [{
include: /\.pug/,
loader: 'pug-html-loader'
}]
]
};
Don't forget to polyfill require
if you want to use it in node.
See webpack
documentation.