* added deployment for frontent github pages * whitelisted feature branch for now * added 404.vue page and adjusted config * building now with github pages preset * set fallback option to true * set target option * removing env for now * added root page * added deploy * adjusted workflow * removed options
10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2024-11-01',
|
|
devtools: { enabled: true },
|
|
modules: ['@nuxt/eslint', '@nuxt/test-utils', '@nuxt/ui'],
|
|
app: {
|
|
baseURL: process.env.BASE_URL,
|
|
},
|
|
})
|