1
0

app.config.mjs 358 B

1234567891011121314151617181920
  1. import { updateAppConfig } from '#app/config'
  2. import { defuFn } from 'defu'
  3. const inlineConfig = {
  4. "nuxt": {
  5. "buildId": "dev"
  6. }
  7. }
  8. // Vite - webpack is handled directly in #app/config
  9. if (import.meta.hot) {
  10. import.meta.hot.accept((newModule) => {
  11. updateAppConfig(newModule.default)
  12. })
  13. }
  14. export default /*@__PURE__*/ defuFn(inlineConfig)