-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnuxt.config.ts
70 lines (69 loc) · 3.06 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
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` is Vite's config
config.plugins.push(vuetify({ autoImport: true }))
})
},
'@nuxt/eslint',
],
vite: {
vue: {
template: {
transformAssetUrls,
},
},
},
components: [
{
path: '~/components',
pathPrefix: false,
},
],
app: {
head: {
title: '大阪Ruby会議04',
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会議04' },
{ property: 'og:image', content: 'https://rubykansai.github.io/osaka04/ogp.png' },
{ property: 'og:description', content: '大阪Ruby会議は、大阪で定期的に開催しているRubyプログラミング言語に関するカンファレンスです。Rubyに関する知見・技術を共有し、またRubyistの交流の場として、皆様に楽しんでいただけるカンファレンスを目指しています。' },
{ property: 'og:url', content: 'https://regional.rubykaigi.org/osaka04/' },
{ property: 'og:title', content: '大阪Ruby会議04' },
{ name: 'twitter:title', content: '大阪Ruby会議04' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:site', content: '@rubykansai' },
{ name: 'twitter:image', content: 'https://rubykansai.github.io/osaka04/ogp.png' },
{ name: 'twitter:description', content: '大阪Ruby会議は、大阪で定期的に開催しているRubyプログラミング言語に関するカンファレンスです。Rubyに関する知見・技術を共有し、またRubyistの交流の場として、皆様に楽しんでいただけるカンファレンスを目指しています。' },
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/osaka04/favicon.ico' },
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Federo&family=Raleway:ital,wght@0,100..900;1,100..900&family=Saira+Extra+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap',
crossorigin: '',
},
],
htmlAttrs: {
lang: 'ja',
prefix: 'og: http://ogp.me/ns#',
},
},
baseURL: '/osaka04/',
},
eslint: {
config: {
stylistic: true,
},
},
})