54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
export default defineNuxtConfig({
|
|
ssr: false,
|
|
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: {
|
|
nocodb: {
|
|
url: "",
|
|
token: "",
|
|
},
|
|
minio: {
|
|
endPoint: "s3.portnimara.com",
|
|
port: 9000,
|
|
useSSL: false,
|
|
accessKey: "279QFJV96Ja9wNB0YYmU1W3Pv4Ofeh3pxojcz0pzeC5LjRurq",
|
|
secretKey: "y8ze6nmA2VHJWDsIU1eNEBq4R4WlmJWp97UE0zUR7E4zWLS6O",
|
|
bucketName: "client-portal",
|
|
},
|
|
public: {
|
|
directus: {
|
|
url: "https://cms.portnimara.dev",
|
|
},
|
|
},
|
|
},
|
|
vuetify: {
|
|
vuetifyOptions: {
|
|
theme: {
|
|
defaultTheme: "portnimara",
|
|
themes: {
|
|
portnimara: {
|
|
colors: {
|
|
primary: "#387bca",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|