Starting over

This commit is contained in:
2025-10-01 22:00:32 -04:00
parent 6d0f99507a
commit 793f395795
29 changed files with 0 additions and 1542 deletions

View File

@@ -1,47 +0,0 @@
export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
devtools: { enabled: false },
css: ['~/assets/css/main.css'],
modules: [
'@nuxt/ui'
],
colorMode: {
preference: 'light'
},
runtimeConfig: {
jwtSecret: process.env.JWT_SECRET || 'your-secret-key',
adminPassword: process.env.ADMIN_PASSWORD || 'admin123'
},
nitro: {
experimental: {
wasm: true
},
externals: {
inline: ['better-sqlite3']
},
moduleSideEffects: ['better-sqlite3'],
alias: {
'tailwindcss/colors': 'tailwindcss/colors.js'
}
},
app: {
head: {
link: [
{ rel: 'icon', type: 'image/png', href: '/logos/favicon.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=Inter:wght@400;500;600;700&display=swap'
}
]
}
}
})