-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
33 lines (33 loc) · 1.17 KB
/
nuxt.config.ts
File metadata and controls
33 lines (33 loc) · 1.17 KB
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2025-06-02',
ssr: true,
nitro: {
preset: 'static',
prerender: {
routes: ['/', '/legal-disclosure'],
crawlLinks: true
}
},
app: {
head: {
title: '高橋智彦のポートフォリオ',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'description', content: '魚とお茶と富士山と車と新しいもの好きエンジニア' },
{ name: 'theme-color', content: '#ffffff' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicon-32x32.png' },
{ rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png' },
{ rel: 'icon', type: 'image/png', sizes: '192x192', href: '/favicon-192x192.png' },
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' }
]
}
},
css: ['~/assets/css/main.css'],
modules: ['@nuxtjs/tailwindcss'],
devtools: { enabled: true }
})