Nuxt.js: How to include an asynchronous script in the nuxt.config.js file?
I have the following script to load any Google Font for my site asynchronously:
<!-- Load Google Fonts Asynchronously -->
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js"></script>
<script>
WebFont.load({google:{families:['IBM+Plex+Sans']}});
</script>
<!-- End Load Google Fonts Asynchronously -->
Usually, in my Vue.js
application I would just add this to the head of index.html
inside the /public
directory, however, I was wondering how I would add this globally to the head section for my nuxt.js
SSR application?
nuxt.js
add a comment |
I have the following script to load any Google Font for my site asynchronously:
<!-- Load Google Fonts Asynchronously -->
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js"></script>
<script>
WebFont.load({google:{families:['IBM+Plex+Sans']}});
</script>
<!-- End Load Google Fonts Asynchronously -->
Usually, in my Vue.js
application I would just add this to the head of index.html
inside the /public
directory, however, I was wondering how I would add this globally to the head section for my nuxt.js
SSR application?
nuxt.js
add a comment |
I have the following script to load any Google Font for my site asynchronously:
<!-- Load Google Fonts Asynchronously -->
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js"></script>
<script>
WebFont.load({google:{families:['IBM+Plex+Sans']}});
</script>
<!-- End Load Google Fonts Asynchronously -->
Usually, in my Vue.js
application I would just add this to the head of index.html
inside the /public
directory, however, I was wondering how I would add this globally to the head section for my nuxt.js
SSR application?
nuxt.js
I have the following script to load any Google Font for my site asynchronously:
<!-- Load Google Fonts Asynchronously -->
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js"></script>
<script>
WebFont.load({google:{families:['IBM+Plex+Sans']}});
</script>
<!-- End Load Google Fonts Asynchronously -->
Usually, in my Vue.js
application I would just add this to the head of index.html
inside the /public
directory, however, I was wondering how I would add this globally to the head section for my nuxt.js
SSR application?
nuxt.js
nuxt.js
edited Jan 2 at 21:25
Ishaan Javali
1,3743821
1,3743821
asked Jan 2 at 21:20
Wind Up Lord VexxosWind Up Lord Vexxos
529
529
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can follow the example from the nuxt doc with Google Analytics to import and execute an external lib: https://nuxtjs.org/faq/google-analytics/
But another easier way is to use the webfontloader:
1/ Install webfontloader
with npm or yarn
npm install webfontloader --save
2/ Create a custom plugin
// plugins/webfont.js
const WebFont = require('webfontloader');
WebFont.load({
google: {
families: ['IBM+Plex+Sans']
}
});
3/ Enable your filter
// nuxt.config.js:
plugins: [
{src: '~plugins/webfont.js', ssr: false}
],
The plugin will be execute only on client-side rendering, due to ssr: false
option.
add a comment |
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54013335%2fnuxt-js-how-to-include-an-asynchronous-script-in-the-nuxt-config-js-file%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can follow the example from the nuxt doc with Google Analytics to import and execute an external lib: https://nuxtjs.org/faq/google-analytics/
But another easier way is to use the webfontloader:
1/ Install webfontloader
with npm or yarn
npm install webfontloader --save
2/ Create a custom plugin
// plugins/webfont.js
const WebFont = require('webfontloader');
WebFont.load({
google: {
families: ['IBM+Plex+Sans']
}
});
3/ Enable your filter
// nuxt.config.js:
plugins: [
{src: '~plugins/webfont.js', ssr: false}
],
The plugin will be execute only on client-side rendering, due to ssr: false
option.
add a comment |
You can follow the example from the nuxt doc with Google Analytics to import and execute an external lib: https://nuxtjs.org/faq/google-analytics/
But another easier way is to use the webfontloader:
1/ Install webfontloader
with npm or yarn
npm install webfontloader --save
2/ Create a custom plugin
// plugins/webfont.js
const WebFont = require('webfontloader');
WebFont.load({
google: {
families: ['IBM+Plex+Sans']
}
});
3/ Enable your filter
// nuxt.config.js:
plugins: [
{src: '~plugins/webfont.js', ssr: false}
],
The plugin will be execute only on client-side rendering, due to ssr: false
option.
add a comment |
You can follow the example from the nuxt doc with Google Analytics to import and execute an external lib: https://nuxtjs.org/faq/google-analytics/
But another easier way is to use the webfontloader:
1/ Install webfontloader
with npm or yarn
npm install webfontloader --save
2/ Create a custom plugin
// plugins/webfont.js
const WebFont = require('webfontloader');
WebFont.load({
google: {
families: ['IBM+Plex+Sans']
}
});
3/ Enable your filter
// nuxt.config.js:
plugins: [
{src: '~plugins/webfont.js', ssr: false}
],
The plugin will be execute only on client-side rendering, due to ssr: false
option.
You can follow the example from the nuxt doc with Google Analytics to import and execute an external lib: https://nuxtjs.org/faq/google-analytics/
But another easier way is to use the webfontloader:
1/ Install webfontloader
with npm or yarn
npm install webfontloader --save
2/ Create a custom plugin
// plugins/webfont.js
const WebFont = require('webfontloader');
WebFont.load({
google: {
families: ['IBM+Plex+Sans']
}
});
3/ Enable your filter
// nuxt.config.js:
plugins: [
{src: '~plugins/webfont.js', ssr: false}
],
The plugin will be execute only on client-side rendering, due to ssr: false
option.
answered Jan 2 at 23:02
Nicolas PennecNicolas Pennec
2,8431020
2,8431020
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54013335%2fnuxt-js-how-to-include-an-asynchronous-script-in-the-nuxt-config-js-file%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown