-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuxt.config.ts
72 lines (65 loc) · 2.92 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
71
72
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify'
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
build: {
transpile: ['vuetify'],
},
modules: [
(_options, nuxt) => {
nuxt.hooks.hook('vite:extendConfig', (config) => {
// @ts-expect-error
config.plugins.push(vuetify({ autoImport: true }))
})
},
//...
],
vite: {
vue: {
template: {
transformAssetUrls,
},
},
},
components: [
{
path: '~/components',
pathPrefix: false,
},
],
app: {
head: {
title: '関西Ruby会議08',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'description', content: '関西Ruby会議は、関西で定期的に開催しているRubyプログラミング言語に関するカンファレンスです。Rubyに関する知見・技術を共有し、またRubyistの交流の場として、皆様に楽しんでいただけるカンファレンスを目指しています。' },
{ property: 'og:type', content: 'website' },
{ property: 'og:site_name', content: '関西Ruby会議08' },
{ property: 'og:image', content: 'https://rubykansai.github.io/kansai08/ogp.jpg' },
{ property: 'og:description', content: '関西Ruby会議は、関西で定期的に開催しているRubyプログラミング言語に関するカンファレンスです。Rubyに関する知見・技術を共有し、またRubyistの交流の場として、皆様に楽しんでいただけるカンファレンスを目指しています。' },
{ property: 'og:url', content: 'https://regional.rubykaigi.org/kansai08/' },
{ property: 'og:title', content: '関西Ruby会議08' },
{ name: 'twitter:title', content: '関西Ruby会議08' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:site', content: '@rubykansai' },
{ name: 'twitter:image', content: 'https://rubykansai.github.io/kansai08/ogp.jpg' },
{ name: 'twitter:description', content: '関西Ruby会議は、関西で定期的に開催しているRubyプログラミング言語に関するカンファレンスです。Rubyに関する知見・技術を共有し、またRubyistの交流の場として、皆様に楽しんでいただけるカンファレンスを目指しています。' },
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/kansai08/favicon.ico' },
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Kumbh+Sans:[email protected]&family=Zen+Old+Mincho&display=swap',
crossorigin: '',
},
],
htmlAttrs: {
lang: 'ja',
prefix: 'og: http://ogp.me/ns#',
},
},
baseURL: '/kansai08/',
},
compatibilityDate: '2025-02-05',
})