Complete sermon itinerary application with Nuxt 3, SQLite, authentication, and Docker deployment
This commit is contained in:
36
nuxt.config.ts
Normal file
36
nuxt.config.ts
Normal file
@@ -0,0 +1,36 @@
|
||||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
export default defineNuxtConfig({
|
||||
compatibilityDate: '2024-04-03',
|
||||
devtools: { enabled: true },
|
||||
|
||||
modules: [
|
||||
'@nuxtjs/tailwindcss',
|
||||
'@nuxt/ui'
|
||||
],
|
||||
|
||||
app: {
|
||||
head: {
|
||||
title: 'New Life Christian Church - Sermons',
|
||||
meta: [
|
||||
{ charset: 'utf-8' },
|
||||
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
||||
{ name: 'description', content: 'Weekly sermons from New Life Christian Church' }
|
||||
],
|
||||
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@300;400;500;600;700&display=swap' }
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
css: ['~/assets/css/main.css'],
|
||||
|
||||
runtimeConfig: {
|
||||
authSecret: process.env.AUTH_SECRET || 'change-this-secret-in-production',
|
||||
public: {
|
||||
siteUrl: process.env.SITE_URL || 'https://newlife-christian.com'
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user