Skip to content

How to add .jade support

PatrickJS edited this page Feb 8, 2016 · 5 revisions

npm install jade-loader

module.exports = {
  module: {
    loaders: [
      { test: /\.jade$/, loader: 'jade-loader' }
    ]
  }
}
@Component({
  selector: 'app',
  template: require('./file.jade')
})

Clone this wiki locally