mirror of
https://codeberg.org/Sevichecc/Seigwai.git
synced 2025-04-30 07:49:30 +08:00
20 lines
358 B
JavaScript
20 lines
358 B
JavaScript
|
|
import { updateAppConfig } from '#app/config'
|
|
import { defuFn } from 'defu'
|
|
|
|
const inlineConfig = {
|
|
"nuxt": {
|
|
"buildId": "dev"
|
|
}
|
|
}
|
|
|
|
// Vite - webpack is handled directly in #app/config
|
|
if (import.meta.hot) {
|
|
import.meta.hot.accept((newModule) => {
|
|
updateAppConfig(newModule.default)
|
|
})
|
|
}
|
|
|
|
|
|
|
|
export default /*@__PURE__*/ defuFn(inlineConfig)
|