-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
49 lines (49 loc) · 1.29 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
css: ["~/assets/style/reset.css"],
runtimeConfig: {
public: {
google_analytics_id: process.env.GOOGLE_ANALYTICS_ID,
production_mode: process.env.PRODUCTION_MODE,
base_url: process.env.BASE_URL,
},
microCMSServiceDomain: process.env.MICROCMS_SERVICE_DOMAIN,
microCMSApiKey: process.env.MICROCMS_API_KEY,
},
modules: [
[
"@nuxtjs/google-fonts",
{
families: {
"Konkhmer Sleokchher": true,
"Noto Sans JP": true,
},
},
],
],
app: {
baseURL: process.env.BASE_URL ? process.env.BASE_URL : "/",
head: {
htmlAttrs: {
lang: "ja",
prefix: "og: https://ogp.me/ns#",
},
meta: [
{ property: "og:type", content: "website" },
{
property: "og:site_name",
content: "清陵祭2023 - 横浜国立大学大学祭",
},
{
property: "og:image",
content: "https://seiryo.ynu-fes.yokohama/images/OGP_seiryo23.webp",
},
{
property: "keywords",
content:
"清陵祭,横浜国立大学,大学祭,文化祭,横国,清涼祭,せいりょうさい,2023",
},
],
},
},
});