Complete sermon management system with Nuxt 4, authentication, SQLite database, QR codes, and Docker deployment
This commit is contained in:
44
nuxt.config.ts
Normal file
44
nuxt.config.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
export default defineNuxtConfig({
|
||||
devtools: { enabled: false },
|
||||
modules: [
|
||||
'@nuxt/ui',
|
||||
'@nuxtjs/tailwindcss'
|
||||
],
|
||||
ui: {
|
||||
theme: {
|
||||
colors: {
|
||||
primary: 'red',
|
||||
gray: 'slate'
|
||||
}
|
||||
}
|
||||
},
|
||||
runtimeConfig: {
|
||||
jwtSecret: process.env.JWT_SECRET || 'your-secret-key',
|
||||
adminPassword: process.env.ADMIN_PASSWORD || 'admin123'
|
||||
},
|
||||
nitro: {
|
||||
experimental: {
|
||||
wasm: true
|
||||
}
|
||||
},
|
||||
css: ['~/assets/css/main.css'],
|
||||
app: {
|
||||
head: {
|
||||
link: [
|
||||
{
|
||||
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'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user