docs: disable transitions by default as hotfix (#8434)

This commit is contained in:
Daniel Roe 2022-10-24 09:34:12 +01:00 committed by GitHub
parent 4536242245
commit 6de1431a37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,10 @@
import { join } from 'pathe' import { join } from 'pathe'
export default defineNuxtConfig({ export default defineNuxtConfig({
app: {
pageTransition: false,
layoutTransition: false
},
extends: process.env.WEBSITE_THEME ? join(process.env.WEBSITE_THEME, 'theme') : '@nuxt-themes/website', extends: process.env.WEBSITE_THEME ? join(process.env.WEBSITE_THEME, 'theme') : '@nuxt-themes/website',
build: { build: {
transpile: [/content-edge/] transpile: [/content-edge/]