-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
55 lines (54 loc) · 1.38 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
import vuetify from 'vite-plugin-vuetify'
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
title: 'International Family',
meta: [
{
name: 'description',
content: 'Enjoy to connect with your international neighbor',
},
],
// link: [{ rel: 'icon', href: '/favicon.png' }],
},
},
build: {
transpile: ['vuetify'],
},
components: [
{
path: '@/components',
pathPrefix: false,
},
],
css: ['vuetify/lib/styles/main.sass'],
devtools: { enabled: true },
debug: true,
hooks: {
'vite:extendConfig': (config) => {
config.plugins!.push(vuetify())
},
},
modules: ['@nuxtjs/supabase'],
runtimeConfig: {
// サーバーサイドでのみ使用可能なキー
public: {
// この中に書かれているものはクライアントサイドでも利用可能
supabase: {
url: process.env.NUXT_PUBLIC_SUPABASE_URL,
key: process.env.NUXT_PUBLIC_SUPABASE_KEY,
},
},
},
srcDir: 'src/',
supabase: {
// Options
},
ssr: false,
typescript: {
shim: false, // shimsファイル生成の無効化(VSCodeでVolarを使う場合はfalseにする)
strict: true, // 型チェックを厳格化
typeCheck: false, // nuxt devまたはnuxt build時に型チェックを実行
},
})