app.config.mjs 334 B

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