An open API service indexing awesome lists of open source software.

https://github.com/pgilad/jade-loader2

A sane jade loader module for webpack
https://github.com/pgilad/jade-loader2

Last synced: about 2 months ago
JSON representation

A sane jade loader module for webpack

Awesome Lists containing this project

README

          

# jade-loader2
> Webpack new and improved jade loader

## Install

```sh
$ npm install jade-loader2 --save-dev
```

## Setup

In your webpack config:

```js
var webpackConfig = {
// ...
module: {
loaders: [
//...
{
test: /\.jade$/,
exclude: [/node_modules/],
loaders: ['jade-loader2'],
},
// ...
],
},
// ...
};
```

## License

MIT ©[Gilad Peleg](http://giladpeleg.com)