| 123456789101112131415161718192021 |
- export default {
- // Global page headers (https://go.nuxtjs.dev/config-head)
- head: {
- titleTemplate: '%s - admin',
- title: 'admin',
- meta: [
- {charset: 'utf-8'},
- {name: 'viewport', content: 'width=device-width, initial-scale=1'},
- {hid: 'description', name: 'description', content: ''}
- ],
- link: [
- {rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}
- ]
- },
- // Global CSS (https://go.nuxtjs.dev/config-css)
- css: [
- '@/assets/css/import.scss',
- '@fortawesome/fontawesome-free/css/all.css'
- ]
- }
|