I just upgraded to 0.1.0 and noticed that the build time of npm run dev has increased from about 20s to several minutes. For me it hangs on build [==== ] 86% for most of the time.
npm run build takes much less time than npm run dev, though I still believe it is longer than it was.
After the dev server starts, changing Vue files causes a quick reload. Changing anything in the API or Nuxt config which restarts the server causes the long wait again though.
This is making is difficult to work on API changes with the new version.
Thanks you for the consideration.
@corsen2000 this is due to the source maps for client-side and server-side for improving the development experience, sadly it has an impact on webpack first build time.
Here what you can do to improve back the performances in your nuxt.config.js:
module.exports = {
build: {
extend (config) {
config.devtool = false
}
}
}
@Atinux thanks for the information. I'll try this out on Monday and post back if I am still seeing significant slow down in 0.10.X vs. 0.9.X.
@Atinux my nuxt version "nuxt": "1.0.0-alpha.5", i add devtool=false, but every i edit the nuxt.config.js will build again and take too much time,i like nuxt but company think this is not good for development , i want to know there have anyway to solve this

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
@Atinux my nuxt version "nuxt": "1.0.0-alpha.5", i add devtool=false, but every i edit the nuxt.config.js will build again and take too much time,i like nuxt but company think this is not good for development , i want to know there have anyway to solve this
