chore: update all deps (#1976)
This commit is contained in:
parent
3acf87d5b6
commit
189d358b2a
20 changed files with 1730 additions and 2078 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue