mirror of
https://github.com/ArthurDanjou/trpc-nuxt.git
synced 2026-01-14 12:14:40 +01:00
23 lines
431 B
TypeScript
23 lines
431 B
TypeScript
export default defineNuxtConfig({
|
|
app: {
|
|
pageTransition: false,
|
|
layoutTransition: false
|
|
},
|
|
modules: ['@nuxtlabs/github-module'],
|
|
extends: process.env.DOCUS_THEME_PATH || '@nuxt-themes/docus',
|
|
github: {
|
|
owner: 'nuxt',
|
|
repo: 'content',
|
|
branch: 'main'
|
|
},
|
|
colorMode: {
|
|
preference: 'dark'
|
|
},
|
|
build: {
|
|
transpile: [/content-edge/, /github-module/]
|
|
},
|
|
nitro: {
|
|
preset: 'vercel'
|
|
}
|
|
})
|