-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
70 lines (69 loc) · 1.85 KB
/
nuxt.config.ts
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
// head: {
// title: 'GRTSINRY43的个人主页',
// meta: [
// {charset: 'utf-8'},
// {name: 'viewport', content: 'width=device-width, initial-scale=1'},
// {hid: 'description', name: 'description', content: 'Meta description'}
// ],
// link: [
// {rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}
// ]
// },
css: [
'@/assets/global.css',
'@/assets/fonts.css'
],
compatibilityDate: '2024-04-03',
devtools: {enabled: true},
modules: [
"@nuxt/ui",
"@nuxtjs/i18n",
"@nuxtjs/sitemap",
'@nuxtjs/color-mode',
"@formkit/auto-animate",
"@nuxt/image",
'@nuxtjs/robots',
'@nuxtjs/sanity'
],
// devServer: {
// host: '192.168.123.20',
// port: 3000
// },
nitro: {
devProxy: {
"/api": {
target: "http://localhost:8080", // 这里是接口地址
changeOrigin: true,
},
},
},
sanity: {
projectId: "3p9gcb1i",
dataset: "production",
},
app: {
head: {
title: '开发,探索与折腾 - GRTSINTY43的个人主页',
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
},
pageTransition: {name: 'page', mode: 'out-in'}
},
site: {
url: 'https://www.grtsinry43.com',
},
sitemap: {
hostname: 'https://www.grtsinry43.com',
gzip: true,
},
i18n: {
vueI18n: './i18n.config.ts',
locales: [
{code: 'en', iso: 'en-US', name: 'English'},
{code: 'zh', iso: 'zh-CN', name: '中文'}
],
defaultLocale: 'zh',
}
})