Created
October 2, 2019 07:28
-
-
Save anish2690/28e0da1f253578843770bd3ce1d3af9a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // manage assets pre render | |
| render: { | |
| bundleRenderer: { | |
| shouldPreload: (file, type) => { | |
| return ['script', 'style', 'font'].includes(type) | |
| } | |
| } | |
| } | |
| // use custom loader | |
| loading: '~/components/loading.vue' | |
| // custom page loader | |
| https://nuxtjs.org/examples/custom-page-loading |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment