Browse Source

feat(gui-v2): add meta object to config

pull/2716/head
Braks 2 years ago committed by Pranav C
parent
commit
e4d2a52902
  1. 9
      packages/nc-gui-v2/nuxt.config.ts

9
packages/nc-gui-v2/nuxt.config.ts

@ -9,6 +9,15 @@ export default defineNuxtConfig({
transpile: ['vuetify'],
},
meta: {
title: 'NocoDB',
description: 'NocoDB GUI V2',
titleTemplate: (titleChunk) => {
// If undefined or blank then we don't need the hyphen
return titleChunk ? `${titleChunk} - NocoDB` : 'NocoDB'
},
},
vite: {
define: {
'process.env.DEBUG': 'false',

Loading…
Cancel
Save