mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
a5dd21e94a
* docs: refactor config * docs(build): support dev without pre build * docs: disable sourcemap
47 lines
949 B
TypeScript
47 lines
949 B
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')],
|
|
]
|
|
if (features.theme) {
|
|
head.push([
|
|
'script',
|
|
{},
|
|
fs.readFileSync(path.resolve(vpRoot, 'dark-mode.js'), 'utf-8'),
|
|
])
|
|
}
|