1234567891011121314151617181920 |
- 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)
|