Git Product home page Git Product logo

Comments (5)

meteorlxy avatar meteorlxy commented on July 21, 2024 1

If you are developing themes, consider following snippets:

https://github.com/vuepress/vuepress-next/blob/57967f7dec27c4148edf920decead327cc8746bf/packages/%40vuepress/plugin-nprogress/src/index.ts#L11-L23

from core.

yzx9 avatar yzx9 commented on July 21, 2024

I ran into the same issue after bump to vuepress.beta.0

from core.

meteorlxy avatar meteorlxy commented on July 21, 2024

Will, there might be some conflicts with vueuse.

I think that's because we both reuse the __VUE_HMR_RUNTIME__ to handle HMR.

🤔 Seems vueuse does not handling HMR manually. So maybe vueuse somehow triggers HMR unexpectedly

from core.

meteorlxy avatar meteorlxy commented on July 21, 2024

I think you should add this config to vite when using vueuse.

https://github.com/vueuse/vueuse/blob/e3d727790f8233a671baac2b6292967b14bc2552/packages/vite.config.ts#L19-L23

from core.

meteorlxy avatar meteorlxy commented on July 21, 2024

That's the solution:

module.exports = {
  bundler: '@vuepress/vite',
  bundlerConfig: {
    viteOptions: {
      optimizeDeps: {
        exclude: [
          '@vueuse/core',
        ],
      },
    },
  },
}

The reason is that vite pre-bundle @vueuse/core package, together with vue package. So there are two different "vue package instance", which caused this error.

from core.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.