Add tailwindcss, add first page
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
parent
db9fa44439
commit
2e98cb39f4
8 changed files with 1265 additions and 8 deletions
|
|
@ -1,4 +1,21 @@
|
|||
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
||||
export default defineNuxtConfig({
|
||||
|
||||
})
|
||||
nitro: {
|
||||
//plugins: ['~/server/index.ts'],
|
||||
},
|
||||
runtimeConfig: {
|
||||
mongoUri: process.env.MONGO_URI || 'mongodb://localhost:27017/friends-best',
|
||||
},
|
||||
modules: ["@nuxtjs/tailwindcss", "@nuxtjs/color-mode"],
|
||||
colorMode: {
|
||||
preference: 'system'
|
||||
},
|
||||
app: {
|
||||
head: {
|
||||
title: 'Vanner Basta',
|
||||
meta: [
|
||||
{name: "theme-color", media: "(prefers-color-scheme: dark)", content: "#1E293B"}
|
||||
]
|
||||
}
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue