-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
51 lines (44 loc) · 1.27 KB
/
nuxt.config.ts
File metadata and controls
51 lines (44 loc) · 1.27 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import tailwindcss from '@tailwindcss/vite'
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
devtools: { enabled: true },
future: {
compatibilityVersion: 4,
},
css: ['~/assets/css/main.css'],
vite: {
plugins: [
tailwindcss(),
],
optimizeDeps: {
exclude: ['@shelby-protocol/clay-codes'],
},
worker: {
format: 'es',
},
},
app: {
head: {
title: 'HashBase - Verifiable AI Dataset Hub',
meta: [
{ name: 'description', content: 'Upload, verify, and share AI datasets with cryptographic integrity proofs anchored on-chain.' },
],
link: [
{ rel: 'icon', type: 'image/png', href: '/logo.png' },
{ rel: 'preconnect', href: 'https://fonts.googleapis.com' },
{ rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap' },
],
},
},
runtimeConfig: {
shelbyApiKey: process.env.SHELBY_API_KEY || '',
public: {
shelbyApiKey: process.env.SHELBY_API_KEY || '',
},
},
typescript: {
strict: true,
},
})