1
1
import fs from 'fs'
2
2
import path from 'path'
3
- import { defineConfigWithTheme } from 'vitepress'
3
+ import { defineConfigWithTheme , type HeadConfig } from 'vitepress'
4
4
import type { Config as ThemeConfig } from '@vue/theme'
5
5
import baseConfig from '@vue/theme/config'
6
6
import { headerPlugin } from './headerMdPlugin'
@@ -577,6 +577,17 @@ export const sidebar: ThemeConfig['sidebar'] = {
577
577
// const i18n: ThemeConfig['i18n'] = {
578
578
// }
579
579
580
+ function inlineScript ( file : string ) : HeadConfig {
581
+ return [
582
+ 'script' ,
583
+ { } ,
584
+ fs . readFileSync (
585
+ path . resolve ( __dirname , `./inlined-scripts/${ file } ` ) ,
586
+ 'utf-8'
587
+ )
588
+ ]
589
+ }
590
+
580
591
export default defineConfigWithTheme < ThemeConfig > ( {
581
592
extends : baseConfig ,
582
593
@@ -618,22 +629,8 @@ export default defineConfigWithTheme<ThemeConfig>({
618
629
href : 'https://sponsors.vuejs.org'
619
630
}
620
631
] ,
621
- [
622
- 'script' ,
623
- { } ,
624
- fs . readFileSync (
625
- path . resolve ( __dirname , './inlined-scripts/restorePreference.js' ) ,
626
- 'utf-8'
627
- )
628
- ] ,
629
- [
630
- 'script' ,
631
- { } ,
632
- fs . readFileSync (
633
- path . resolve ( __dirname , './inlined-scripts/uwu.js' ) ,
634
- 'utf-8'
635
- )
636
- ] ,
632
+ inlineScript ( 'restorePreference.js' ) ,
633
+ inlineScript ( 'uwu.js' ) ,
637
634
[
638
635
'script' ,
639
636
{
@@ -649,7 +646,8 @@ export default defineConfigWithTheme<ThemeConfig>({
649
646
src : 'https://vueschool.io/banner.js?affiliate=vuejs&type=top' ,
650
647
async : 'true'
651
648
}
652
- ]
649
+ ] ,
650
+ inlineScript ( 'perfops.js' )
653
651
] ,
654
652
655
653
themeConfig : {
0 commit comments