head.js 555 B

123456789101112131415161718192021
  1. export default {
  2. // Global page headers (https://go.nuxtjs.dev/config-head)
  3. head: {
  4. titleTemplate: '%s - admin',
  5. title: 'admin',
  6. meta: [
  7. {charset: 'utf-8'},
  8. {name: 'viewport', content: 'width=device-width, initial-scale=1'},
  9. {hid: 'description', name: 'description', content: ''}
  10. ],
  11. link: [
  12. {rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}
  13. ]
  14. },
  15. // Global CSS (https://go.nuxtjs.dev/config-css)
  16. css: [
  17. '@/assets/css/import.scss',
  18. '@fortawesome/fontawesome-free/css/all.css'
  19. ]
  20. }