-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
53 lines (53 loc) · 1.22 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
title: 'Tafeltennis Toernooi Planner!',
meta: [
{
name: 'description',
content: 'Welkom bij de Tafeltennis Toernooi Planner. Alles om je tafeltennis toernooi te organiseren.',
},
],
link: [
{
rel: 'stylesheet',
href: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css',
},
],
script: [
{
type: 'text/javascript',
src: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js',
},
{
type: 'text/javascript',
src: 'https://code.jquery.com/jquery-3.7.1.min.js',
},
],
},
},
css: ['~/assets/css/tailwind.css'],
devtools: { enabled: false },
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
modules: [
'nuxt-icon',
'dayjs-nuxt',
'nuxt-server-utils',
"@nuxt/ui",
"@nuxt/icon",
'@nuxtjs/supabase'
],
typescript: {
shim: false,
},
runtimeConfig: {
DATABASE_URL: process.env.DATABASE_URL,
DIRECT_URL: process.env.DIRECT_URL,
},
});