42 lines
845 B
TypeScript
42 lines
845 B
TypeScript
export default defineNuxtConfig({
|
|
compatibilityDate: "2024-11-01",
|
|
devtools: { enabled: true },
|
|
modules: ["vuetify-nuxt-module", "@vite-pwa/nuxt"],
|
|
app: {
|
|
head: {
|
|
titleTemplate: "%s • Portal",
|
|
meta: [
|
|
{ property: "og:title", content: "Portal" },
|
|
{ property: "og:image", content: "/og-image.png" },
|
|
{ name: "twitter:card", content: "summary_large_image" },
|
|
],
|
|
htmlAttrs: {
|
|
lang: "en",
|
|
},
|
|
},
|
|
},
|
|
runtimeConfig: {
|
|
public: {
|
|
keycloak: {
|
|
url: "",
|
|
realm: "",
|
|
clientId: "",
|
|
},
|
|
},
|
|
},
|
|
vuetify: {
|
|
vuetifyOptions: {
|
|
theme: {
|
|
defaultTheme: "portal",
|
|
themes: {
|
|
portal: {
|
|
colors: {
|
|
primary: "#387bca",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|