Coder Social home page Coder Social logo

Comments (4)

bluwy avatar bluwy commented on September 25, 2024 1

If you'd like to separate out the preload script from the jspdf chunk, you can configure something like this instead:

export default defineConfig({
  plugins: [react()],
  build: {
    rollupOptions: {
      output: {
        manualChunks: {
          jspdf: ['jspdf'],
          preload: ['\0vite/preload-helper.js'] // <-- put in its own chunk
        }
      }
    }
  }
})

Rollup's chunking behaviour doesn't guarantee that only files in jspdf will be included in the chunk. Some imports within jspdf requires preloading, so Rollup includes the preloading script together because it sees that it's part of jspdf too.

About build.modulePreload.polyfill: false not working, I think it's related to #13952. In short, we can't know if preloading may be needed for CSS, so we always inject it. We may need to update the docs about this at the meantime, but we can track this in the issue there.

Closing this one for now as its how Rollup chunks things.

from vite.

stackblitz avatar stackblitz commented on September 25, 2024

Fix this issue in StackBlitz Codeflow Start a new pull request in StackBlitz Codeflow.

from vite.

umairkhalid-devsinc avatar umairkhalid-devsinc commented on September 25, 2024

Still not fixed

from vite.

stefan-schweiger avatar stefan-schweiger commented on September 25, 2024

thanks for the hint how to manually chunk the preload code!

from vite.

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.