You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.1 KiB
58 lines
1.1 KiB
import { defineHopeConfig } from "vuepress-theme-hope"; |
|
import themeConfig from "./themeConfig"; |
|
|
|
// const { googleAnalyticsPlugin } = require('@vuepress/plugin-google-analytics') |
|
|
|
|
|
export default defineHopeConfig({ |
|
base: "/", |
|
|
|
dest: "./dist", |
|
|
|
head: [ |
|
[ |
|
"link", |
|
{ |
|
rel: "stylesheet", |
|
href: "//at.alicdn.com/t/font_2410206_mfj6e1vbwo.css", |
|
}, |
|
], |
|
[ |
|
"script", |
|
{ |
|
async: true, |
|
src: "https://www.googletagmanager.com/gtag/js?id=G-L85GT01WZ5", |
|
}, |
|
], |
|
[ |
|
"script", |
|
{}, |
|
" window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-L85GT01WZ5');" |
|
] |
|
], |
|
|
|
locales: { |
|
// "/": { |
|
// lang: "en-US", |
|
// title: "Theme Demo", |
|
// description: "A demo for vuepress-theme-hope", |
|
// }, |
|
"/": { |
|
lang: "zh-CN", |
|
title: "西安交通大学科幻协会", |
|
description: "Site of XJTU-SFA", |
|
}, |
|
}, |
|
|
|
themeConfig, |
|
|
|
// plugins: [ |
|
// googleAnalyticsPlugin({ |
|
// id: 'G-L85GT01WZ5', |
|
// }), |
|
// ], |
|
|
|
|
|
|
|
}); |
|
|
|
|