mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
22e960d34b
- Add Goolge Analysis scripts for website
62 lines
1.2 KiB
TypeScript
62 lines
1.2 KiB
TypeScript
import fs from 'fs'
|
|
import path from 'path'
|
|
import { languages } from '../utils/lang'
|
|
import { vpRoot } from '../utils/paths'
|
|
import { features } from './features'
|
|
import type { HeadConfig } from 'vitepress'
|
|
|
|
export const head: HeadConfig[] = [
|
|
[
|
|
'link',
|
|
{
|
|
rel: 'icon',
|
|
href: '/images/element-plus-logo-small.svg',
|
|
},
|
|
],
|
|
[
|
|
'link',
|
|
{
|
|
rel: 'stylesheet',
|
|
href: '//fonts.loli.net/css?family=Inter:300,400,500,600|Open+Sans:400,600;display=swap',
|
|
},
|
|
],
|
|
[
|
|
'link',
|
|
{
|
|
rel: 'stylesheet',
|
|
href: '//unpkg.com/nprogress@0.2.0/nprogress.css',
|
|
},
|
|
],
|
|
[
|
|
'script',
|
|
{},
|
|
`;(() => {
|
|
window.supportedLangs = ${JSON.stringify(languages)}
|
|
})()`,
|
|
],
|
|
|
|
['script', {}, fs.readFileSync(path.resolve(vpRoot, 'lang.js'), 'utf-8')],
|
|
[
|
|
'script',
|
|
{
|
|
async: 'true',
|
|
src: 'https://www.googletagmanager.com/gtag/js?id=UA-175337989-1',
|
|
},
|
|
],
|
|
[
|
|
'script',
|
|
{},
|
|
`window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', 'UA-175337989-1');`,
|
|
],
|
|
]
|
|
if (features.theme) {
|
|
head.push([
|
|
'script',
|
|
{},
|
|
fs.readFileSync(path.resolve(vpRoot, 'dark-mode.js'), 'utf-8'),
|
|
])
|
|
}
|