chore: update all deps (#1976)

This commit is contained in:
Anthony Fu 2023-04-12 14:35:35 +02:00 committed by GitHub
parent 3acf87d5b6
commit 189d358b2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 1730 additions and 2078 deletions

View file

@ -3,6 +3,7 @@ import { isCI, isDevelopment, isWindows } from 'std-env'
import { isPreview } from './config/env'
import { i18n } from './config/i18n'
import { pwa } from './config/pwa'
import type { BuildInfo } from './types'
const { resolve } = createResolver(import.meta.url)
@ -32,11 +33,14 @@ export default defineNuxtConfig({
'~/modules/tauri/index',
'~/modules/pwa/index', // change to '@vite-pwa/nuxt' once released and remove pwa module
'stale-dep/nuxt',
'@nuxt/devtools',
],
devtools: {
enabled: true,
},
experimental: {
payloadExtraction: false,
inlineSSRStyles: false,
renderJsonPayloads: true,
},
css: [
'@unocss/reset/tailwind.css',
@ -259,3 +263,11 @@ declare module 'nuxt/dist/app' {
'elk-logo:click': () => void
}
}
declare module '@nuxt/schema' {
interface AppConfig {
storage: any
env: BuildInfo['env']
buildInfo: BuildInfo
}
}