Releases: brocessing/kirby-webpack
Releases · brocessing/kirby-webpack
0.7.0
- Fix bad color formatting on php logs from the built in server
- Clear php log on each npm start
- Remove paths.src / paths.build
In the main.config.js
, entries now needs to be declared relative to the root of your project, like this:
const entries = {
'src/index.js': 'www/assets/bundle.js',
'src/index.less': 'www/assets/bundle.css'
}
This allows to quickly split your entry files between multiples folders, like a javascript
and a style
folder
/www
) will not be bundled in development - they can't be served by the devserver.
0.6.2
0.6.1
0.6.0
- Remove the url rewriting middleware. kirby-webpack now only relies on HTTP_X_FORWARDED_HOST / HTTP_X_FORWARDED_FOR headers to setup a proper url root for kirby when serving from browser sync.
- Theses changes should allow to proxy from a https server
- Add a default
favicon.ico
to remove a 404/500 console error depending on the environment