head.js 670 B

1234567891011121314151617181920212223
  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. // (https://nuxtjs.org/docs/2.x/features/configuration#the-css-property)
  17. css: [
  18. '~/assets/css/import.scss',
  19. '~/assets/css/global.scss',
  20. '@fortawesome/fontawesome-free/css/all.css'
  21. ]
  22. }