Features
- We can now specify the watchers options for chokidar and webpack via
nuxt.config.js
:
module.exports = {
watchers: {
chokidar: {
usePolling: true
},
webpack: {
aggregateTimeout: 1000,
poll: 1000
}
}
}
Improvements
- Show url after each build #443