port-nimara-client-portal/nuxt.config.ts

46 lines
1002 B
TypeScript
Raw Normal View History

2025-02-16 13:10:19 +01:00
export default defineNuxtConfig({
2025-05-29 07:32:13 +02:00
ssr: false,
2025-02-16 13:10:19 +01:00
compatibilityDate: "2024-11-01",
devtools: { enabled: true },
modules: ["nuxt-directus", "vuetify-nuxt-module", "@vite-pwa/nuxt"],
app: {
head: {
titleTemplate: "%s • Port Nimara Client Portal",
title: "Port Nimara Client Portal",
meta: [
{ property: "og:title", content: "Port Nimara Client Portal" },
{ property: "og:image", content: "/og-image.png" },
{ name: "twitter:card", content: "summary_large_image" },
],
htmlAttrs: {
lang: "en",
},
},
},
runtimeConfig: {
2025-05-29 07:32:13 +02:00
nocodb: {
url: "",
token: "",
},
2025-02-16 13:10:19 +01:00
public: {
directus: {
2025-03-25 01:09:11 +01:00
url: "https://cms.portnimara.dev",
2025-02-16 13:10:19 +01:00
},
},
},
vuetify: {
vuetifyOptions: {
theme: {
defaultTheme: "portnimara",
themes: {
portnimara: {
colors: {
primary: "#387bca",
},
},
},
},
},
},
});