Nuxt/lib/builder/webpack
Dax Chen 97076fa649 Add better support for pug
When using `lang="pug"`, passing Boolean `true` as prop and using directives will case errors.

See: 
https://github.com/vuejs/vue-loader/issues/693
https://github.com/vuejs/vue-loader/issues/55

For example:

```html
<template lang="pug">
foo(
  bar
  v-baz-directive
)
</template>
```

This will be rendered as
`<foo bar="bar" v-baz-directive="v-baz-directive">`
and cause errors such as `bar expected Boolean but got String` and `v`/`baz`/`directive` not defined.
2017-08-13 17:00:05 +08:00
..
base.config.js feat: build.autoprefixer option 2017-08-05 12:37:33 +04:30
client.config.js feat(nuxt.config.js): support chunkFileName in config 2017-08-01 20:15:02 +04:30
helpers.js fix css-loader to handle ~/ aliases 2017-08-12 21:33:06 +04:30
server.config.js workaround for es6-promise and vue-server-renderer 2017-08-10 16:16:00 +04:30
vue-loader.config.js Add better support for pug 2017-08-13 17:00:05 +08:00