Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(nuxt): Make dynamic import() wrapping default #13958

Merged
merged 5 commits into from
Oct 17, 2024

Commits on Oct 16, 2024

  1. Configuration menu
    Copy the full SHA
    200ba3a View commit details
    Browse the repository at this point in the history
  2. delete --import

    s1gr1d committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    4ffcaa8 View commit details
    Browse the repository at this point in the history
  3. fix dev mode

    s1gr1d committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    3c1829f View commit details
    Browse the repository at this point in the history
  4. fix(nuxt): Re-export 'default' exports with rollup plugin (#13984)

    While the preset for Netlify exports the serverless handler function as
    `export { D as default }`, the Vercel preset exports this handler as
    `export { D as handler };`.
    
    This PR makes some adaptions to the code generation in the plugin to
    make it possible to re-export `default` functions. The previous snippet
    did not work as `default` is obviously not allowed as a function name.
    s1gr1d committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    aa74914 View commit details
    Browse the repository at this point in the history
  5. rename option

    s1gr1d committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    f0577d2 View commit details
    Browse the repository at this point in the history