Skip to content

Instantly share code, notes, and snippets.

@hibuno
Created January 21, 2018 15:39
Show Gist options
  • Save hibuno/63f9a63823007bea4c433479dde1fc6c to your computer and use it in GitHub Desktop.
Save hibuno/63f9a63823007bea4c433479dde1fc6c to your computer and use it in GitHub Desktop.
Add bootstrap 4 on NuxtJS
...
head: {
title: 'example',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: 'Nuxt.js project' },
// example vue-meta
{ hid: 'title', name: 'title', content: 'Nuxt.js project' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'stylesheet', type: 'text/css', href: 'https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta.3/css/bootstrap.min.css' }
]
},
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment