Package Exports
- jade-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 (jade-loader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
jade loader for webpack
Usage
var template = require("jade!./file.jade");
// => returns file.jade content as template function
Embedded resources
Try to use require
for all your embedded resources, to process them with webpack.
div
img(src=require("./my/image.png"))
You need to configure loaders for these filetypes too. (Take a look at the file-loader.)