-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
38 lines (38 loc) · 788 Bytes
/
nuxt.config.ts
File metadata and controls
38 lines (38 loc) · 788 Bytes
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
ssr: false,
modules: ['@vueuse/nuxt', '@nuxt/ui', '@nuxthub/core'],
runtimeConfig: {
lastfm: process.env.LASTFM || '',
public: {
init: process.env.INIT || '20240701',
},
},
hub: {
blob: true,
remote: true,
},
tailwindcss: {
config: {
plugins: [require('tailwindcss-animated')],
},
},
app: {
head: {
htmlAttrs: {
lang: 'en',
},
title: 'Guess the Song ♫',
meta: [
{
property: 'og:description',
content: 'Guess the Song based on bass, drums, vocals & instruments ',
},
],
},
},
future: {
compatibilityVersion: 4,
},
})