head.js 1.6 KB

1234567891011121314151617181920212223242526272829303132
  1. export default {
  2. // Global page headers (https://go.nuxtjs.dev/config-head)
  3. head: {
  4. title: 'Opentalent',
  5. meta: [
  6. { charset: 'utf-8' },
  7. { name: 'viewport', content: 'width=device-width, initial-scale=1' },
  8. { hid: 'description', name: 'description', content: '' },
  9. { name: 'msapplication-TileColor', content: '#324250' },
  10. { name: 'msapplication-TileImage', content: '/favicon/mstile-144x144.png' }
  11. ],
  12. link: [
  13. { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
  14. { rel: 'apple-touch-icon-precomposed', sizes: '57x57', href: '/favicon/apple-touch-icon-57x57.png' },
  15. { rel: 'apple-touch-icon-precomposed', sizes: '114x114', href: '/favicon/apple-touch-icon-114x114.png' },
  16. { rel: 'apple-touch-icon-precomposed', sizes: '72x72', href: '/favicon/apple-touch-icon-72x72.png' },
  17. { rel: 'apple-touch-icon-precomposed', sizes: '144x144', href: '/favicon/apple-touch-icon-144x144.png' },
  18. { rel: 'apple-touch-icon-precomposed', sizes: '120x120', href: '/favicon/apple-touch-icon-120x120.png' },
  19. { rel: 'apple-touch-icon-precomposed', sizes: '152x152', href: '/favicon/apple-touch-icon-152x152.png' },
  20. { rel: 'icon', sizes: '32x32', type: 'image/x-icon', href: '/favicon/favicon-32x32.png' },
  21. { rel: 'icon', sizes: '16x16', type: 'image/x-icon', href: '/favicon/favicon-16x16.png' },
  22. ]
  23. },
  24. // Global CSS (https://go.nuxtjs.dev/config-css)
  25. // (https://nuxtjs.org/docs/2.x/features/configuration#the-css-property)
  26. css: [
  27. '~/assets/css/import.scss',
  28. '~/assets/css/global.scss',
  29. '@fortawesome/fontawesome-free/css/all.css'
  30. ]
  31. }