-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathnuxt.config.js
More file actions
37 lines (36 loc) · 721 Bytes
/
nuxt.config.js
File metadata and controls
37 lines (36 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import theme from '@nuxt/content-theme-docs';
export default theme({
loading: { color: '#00CD81' },
i18n: {
locales: () => [
{
code: 'zh',
iso: 'zh-CN',
file: 'zh-CN.js',
name: '简体中文'
}
],
defaultLocale: 'zh'
},
buildModules: ['@nuxtjs/google-analytics', '@nuxtjs/google-adsense', '@nuxtjs/sitemap'],
content: {
liveEdit: false
},
components: true,
pwa: {
manifest: {
name: '团队领袖计划'
}
},
googleAnalytics: {
id: 'UA-33096931-4'
},
'google-adsense': {
id: 'ca-pub-5059418763237956',
pageLevelAds: true,
overlayBottom: true
},
sitemap: {
hostname: 'https://leader.js.cool'
}
});