refactor: split tauri config into module
This commit is contained in:
parent
44cf8aa89c
commit
2d49074242
5 changed files with 43 additions and 27 deletions
21
modules/tauri/index.ts
Normal file
21
modules/tauri/index.ts
Normal file
|
@ -0,0 +1,21 @@
|
|||
import { addPlugin, createResolver, defineNuxtModule, useNuxt } from '@nuxt/kit'
|
||||
|
||||
export default defineNuxtModule({
|
||||
meta: {
|
||||
name: 'tauri',
|
||||
},
|
||||
setup() {
|
||||
const nuxt = useNuxt()
|
||||
const { resolve } = createResolver(import.meta.url)
|
||||
|
||||
if (!process.env.TAURI_PLATFORM)
|
||||
return
|
||||
|
||||
nuxt.hook('vite:extend', ({ config }) => {
|
||||
config.build!.target = ['es2021', 'chrome100', 'safari13']
|
||||
config.envPrefix = [...config.envPrefix || [], 'VITE_', 'TAURI_']
|
||||
})
|
||||
|
||||
addPlugin(resolve('./runtime/logging.client'))
|
||||
},
|
||||
})
|
19
modules/tauri/runtime/logging.client.ts
Normal file
19
modules/tauri/runtime/logging.client.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
import * as log from 'tauri-plugin-log-api'
|
||||
|
||||
// When running inside Tauri, catch all logs from 3rd party packages and direct them to the unified logging stream
|
||||
export default defineNuxtPlugin(() => {
|
||||
// eslint-disable-next-line no-global-assign
|
||||
console = {
|
||||
...console,
|
||||
trace: log.trace,
|
||||
debug: log.debug,
|
||||
log: log.info,
|
||||
warn: log.warn,
|
||||
error: log.error,
|
||||
}
|
||||
|
||||
window.addEventListener('unhandledrejection', err =>
|
||||
log.error(err.reason),
|
||||
)
|
||||
window.addEventListener('error', err => log.error(err.error), true)
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue