Update README.md

This commit is contained in:
Sébastien Chopin 2016-11-08 04:07:53 +01:00 committed by GitHub
parent 90a97d76ce
commit 98f22833f0

View File

@ -62,11 +62,12 @@ For these reasons, Nuxt.js targets Node.js `4.0` or higher (you might want to la
const Nuxt = require('nuxt') const Nuxt = require('nuxt')
const options = { const options = {
routes: [], // merged with pages/*.vue routes routes: [], // see examples/custom-routes
css: ['/dist/boostrap.css'] // added to global app (App.vue) css: ['/dist/boostrap.css'] // see examples/global-css
store: true // use vuex and require('./store') store: true // see examples/vuex-store
vendor: ['axios', 'public/plugin.js'], // Add vendors in vendor-bundle.js vendor: ['axios'], // see examples/plugins-vendor
loading: false or { color: "blue", error: "red" } or 'components/loader' plugins: ['public/plugin.js'], // see examples/plugins-vendor
loading: false or { color: 'blue', failedColor: 'red' } or 'components/my-loader' // see examples/custom-loading
} }
// Launch nuxt build with given options // Launch nuxt build with given options