mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 14:15:13 +00:00
2956e73c3e
- Loading component working and customisable via nuxt.config.js (see examples/async-data/) - Accept callback for new Nuxt(options, cb) with cb(null, nuxt) - Simplify async-data example
9 lines
165 B
JavaScript
9 lines
165 B
JavaScript
module.exports = {
|
|
vendor: ['axios'], // Add axios in the vendor.bundle.js
|
|
loading: {
|
|
color: '#4FC08D',
|
|
failedColor: '#bf5050',
|
|
duration: 1500
|
|
}
|
|
}
|