Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 323 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 323 Bytes

A pre-loader to add pug template dependencies as loader's deps without changing anything of the input.

Use it like below:

{
  test: /\.vue$/,
  loader: 'vue-loader',
  options: {
    preLoaders: {
      pug: 'pug-deps-loader'
    }
  }
}

Reference: vuejs/vue-loader#1122