chore: upgrade to nuxt v3.4.3 (#2046)

This commit is contained in:
Daniel Roe 2023-05-02 10:48:33 +01:00 committed by GitHub
parent 835269fa1d
commit 0a98c5f13d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 1419 additions and 1407 deletions

View file

@ -2,5 +2,16 @@ export default defineNuxtConfig({
app: {
baseURL: '/docs',
},
experimental: {
/**
* TODO: investigate upstream the following error:
* ```
* [error] Unexpected token (Note that you need plugins to import files that are not JavaScript)
* file: /opt/build/repo/docs/components/global/Logo.vue?vue&type=style&index=0&scoped=1f94f36b&lang.ts?inline&used:1:0
* 1: .logo{display:flex;flex-direction:row;align-items:center;gap:0.5rem;font-size:1.5rem;}img{flex-shrink:0;aspect-ratio:...
* ```
*/
inlineSSRStyles: false,
},
extends: '@nuxt-themes/docus',
})