-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
48 lines (48 loc) · 1.37 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
css: ["@/assets/scss/variables.scss", "@/assets/css/reset.css"],
modules: [
[
"@nuxtjs/google-fonts",
{
families: {
"Noto+Sans+JP": true,
},
},
],
[
"nuxt-gtag",
{
id: process.env.GOOGLE_ANALYTICS_ID,
initialConsent: process.env.IS_PRODUCTION,
},
],
],
app: {
baseURL: process.env.BASE_URL ? process.env.BASE_URL : "/",
head: {
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ hid: "description", name: "description", content: "" },
{ property: "og:type", content: "website" },
{ property: "og:site_name", content: "23常盤祭 - 横浜国立大学大学祭" },
{
property: "keywords",
content:
"常盤祭,横浜国立大学,大学祭,文化祭,横国,常磐祭,ときわさい,2023",
},
// {property: 'og:image', content: 'localhost:3000/favicon.ico'},
// {property: 'og:image:width', content: '1200'},
// {property: 'og:image:height', content: '630'},
],
},
},
runtimeConfig: {
contestDataUrl: process.env.CONTEST_DATA_URL,
public: {
app_name: "23tokiwa",
},
},
});