Static GitHub Issues

[240] Versatile Vue.js Application

prev: Using external scripts?
next: repeated requests for favicon.ico

Nuxt.js goal is also to create rich vue.js applications easily.

Server side rendering can be hard to handle, so we will introduce a ssr: false option in nuxt.config.js.

The features will not change:

  • Write vue files
  • Automatic code splitting
  • Powerful routing system with asynchronous data
  • ES6/ES7 Transpilation
  • Bundling and minifying JS & CSS
  • Managing Head Elements
  • Hot reloading in Development
  • Static File Serving
  • Pre-processor: SASS, LESS, Stylus, etc

With this option, we will set the mode to hash and introduce a nuxt export command to create a dist folder ready to be deployed on any CDN.

We might add a nuxtClientInit action in the store since the nuxtServerInit won't be called if ssr is disabled.

<!--cmty--><!--cmty_prevent_hook--><div align="right"><sub><em>This feature request is available on <a href="https://nuxtjs.cmty.io">Nuxt.js</a> community (<a href="https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c203">#c203</a>)</em></sub></div>