Skip to content

Commit

Permalink
fix faveicon
Browse files Browse the repository at this point in the history
  • Loading branch information
alirezanet committed Dec 10, 2021
1 parent ca69a43 commit fc88a58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/.vuepress/config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineUserConfig } from 'vuepress-vite'
import type { DefaultThemeOptions } from 'vuepress-vite'
import type { ViteBundlerOptions } from '@vuepress/bundler-vite'
import { navbar, sidebar , plugin } from './configs'
import { navbar, sidebar, plugin } from './configs'


export default defineUserConfig<DefaultThemeOptions, ViteBundlerOptions>({
Expand All @@ -26,5 +26,8 @@ export default defineUserConfig<DefaultThemeOptions, ViteBundlerOptions>({
port: 3000,
base: '/Gridify/',

head: [['link', { rel: 'icon', href: '/favicon.ico' }]],
head: [
['link', { rel: 'icon', href: '/favicon.ico', type: "image/x-icon" }],
['link', { rel: 'shortcut icon', href: '/favicon.ico', type: "image/x-icon" }]
],
})
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
home: true
title: Welcome
tagline: A Modern Dynamic LINQ library for .NET
actions:
- text: Get Started
Expand Down

0 comments on commit fc88a58

Please sign in to comment.