Add weekday to event
This commit is contained in:
+16
-15
@@ -4,28 +4,29 @@ module.exports = {
|
||||
],
|
||||
head: {
|
||||
link: [
|
||||
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
|
||||
{ rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicon-32x32.png' },
|
||||
{ rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png' },
|
||||
{ rel: 'manifest', href: '/site.webmanifest' },
|
||||
{ rel: 'mask-icon', href: '/safari-pinned-tab.svg', color: '#7f0aff' },
|
||||
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
|
||||
{ rel: "stylesheet", href: 'https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons' },
|
||||
{ rel: "stylesheet", href: "https://fonts.googleapis.com/css?family=Material+Icons" },
|
||||
{ rel: "stylesheet", href: "https://cdn.materialdesignicons.com/3.3.92/css/materialdesignicons.min.css" }
|
||||
{rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png'},
|
||||
{rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicon-32x32.png'},
|
||||
{rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png'},
|
||||
{rel: 'manifest', href: '/site.webmanifest'},
|
||||
{rel: 'mask-icon', href: '/safari-pinned-tab.svg', color: '#7f0aff'},
|
||||
{rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'},
|
||||
{rel: "stylesheet", href: 'https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons'},
|
||||
{rel: "stylesheet", href: "https://fonts.googleapis.com/css?family=Material+Icons"},
|
||||
{rel: "stylesheet", href: "https://cdn.materialdesignicons.com/3.3.92/css/materialdesignicons.min.css"}
|
||||
],
|
||||
meta: [
|
||||
{ name: 'viewport', content: 'width=device-width, initial-scale=1, user-scalable=no, minimal-ui' }
|
||||
{name: 'viewport', content: 'width=device-width, initial-scale=1, user-scalable=no, minimal-ui'}
|
||||
],
|
||||
},
|
||||
mode: 'spa',
|
||||
plugins: [
|
||||
{ src: '~/plugins/vuetify.js', ssr: false },
|
||||
{ src: '~/plugins/graph-routing.js', ssr: false },
|
||||
{ src: '~/plugins/app-components.js', ssr: false },
|
||||
{ src: '~/plugins/vue-lazyload.js', ssr: false }
|
||||
{src: '~/plugins/vuetify.js', ssr: false},
|
||||
{src: '~/plugins/graph-routing.js', ssr: false},
|
||||
{src: '~/plugins/app-components.js', ssr: false},
|
||||
{src: '~/plugins/vue-lazyload.js', ssr: false},
|
||||
{src: '~/plugins/vue-moment.js', ssr: false}
|
||||
],
|
||||
router: {
|
||||
middleware: ['auth']
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user