$ cnpm install jade-loader
var template = require("jade!./file.jade");
// => returns file.jade content as template function
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.)
MIT (http://www.opensource.org/licenses/mit-license.php)
Copyright 2013 - present © cnpmjs.org | Home |