static-dev / spike-core

:warning: UNMAINTAINED :warning: A modern static build tool, powered by webpack
https://spike.js.org
Other
58 stars 9 forks source link

_spikeExtension does not work with pug-static-loader #282

Open NikitaVlaznev opened 5 years ago

NikitaVlaznev commented 5 years ago

Having index.pug in views and this in app.js:

module: {
  rules: [{
    test: /\.pug$/,
    use: [{
      loader: 'pug-static-loader',
      options: {
        _spikeExtension: 'html',
        pretty: false,
        locals: { foo: 'bar' }
      }
    }]
  }]
}

leads to getting index.pug in the public folder.

jescalan commented 5 years ago

Need more info here -- is the file compiling, but its just the extension thats not working? Or is it not compiling at all?