Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions .vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,7 @@ module.exports = {
description: "Beautifully designed application scaffolding for Laravel",
base: '/',

head: [
[
'link',
{
href:
'https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,800,800i,900,900i',
rel: 'stylesheet',
type: 'text/css',
},
],
],
head: require('./head'),

themeConfig: {
logo: '/assets/img/logo.svg',
Expand Down
46 changes: 46 additions & 0 deletions .vuepress/head.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
module.exports = [
[
'link',
{
href:
'https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,800,800i,900,900i',
rel: 'stylesheet',
type: 'text/css',
},
], [
'link',
{
rel: 'apple-touch-icon',
sizes: '180x180',
href: '/assets/img/apple-touch-icon.png?v=00aYpBgAp5'
}
], [
'link',
{
rel: 'icon',
type: 'image/png',
sizes: '32x32',
href: '/assets/img/favicon-32x32.png?v=00aYpBgAp5'
}
], [
'link',
{
rel: 'icon',
type: 'image/png',
sizes: '16x16',
href: '/assets/img/favicon-16x16.png?v=00aYpBgAp5'
}
], [
'link',
{
rel: 'shortcut icon',
href: '/assets/img/favicon.ico?v=00aYpBgAp5'
}
], [
'meta',
{
name: 'theme-color',
content: '#ffffff'
}
],
]
Binary file added .vuepress/public/assets/img/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .vuepress/public/assets/img/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .vuepress/public/assets/img/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .vuepress/public/assets/img/favicon.ico
Binary file not shown.
Binary file added .vuepress/public/favicon.ico
Binary file not shown.