19 lines
338 B
JavaScript
19 lines
338 B
JavaScript
|
|
import { _replaceAppConfig } from '#app/config'
|
|
import { defuFn } from 'defu'
|
|
|
|
const inlineConfig = {
|
|
"nuxt": {}
|
|
}
|
|
|
|
// Vite - webpack is handled directly in #app/config
|
|
if (import.meta.hot) {
|
|
import.meta.hot.accept((newModule) => {
|
|
_replaceAppConfig(newModule.default)
|
|
})
|
|
}
|
|
|
|
|
|
|
|
export default /*@__PURE__*/ defuFn(inlineConfig)
|