Webpack3 starter kit
-
Hi All,
You can now use Webpack 3 with the latest starter kit (for v0.14 beta -
quasar init default#beta <folder_name>
).
Enjoy and report any errors you may encounter.-Razvan
-
wooww…! that’s cool
Thanks -
Anyone who’s migrating to WP3 and noticed that hot reload stopped working can safely remove the event subscription.
In
build/hot-reload.js
Replaceconst hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true') hotClient.subscribe(event => { if (event.action === 'reload') { // eslint-disable-next-line no-undef window.location.reload() } })
with
require('webpack-hot-middleware/client?noInfo=true&reload=true')
-
@RichAyotte yes, that is part of the new template