Giter VIP home page Giter VIP logo

Comments (5)

stackblitz avatar stackblitz commented on September 12, 2024

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

from vite.

sapphi-red avatar sapphi-red commented on September 12, 2024

import("./dynamic-HASH.js"); is relative to the file containing that statement. As long as you are serving the file importing the other file and the imported file on the same origin, it won't be an issue.

from vite.

Kerryliu avatar Kerryliu commented on September 12, 2024

The problem is the imported file is not on the same origin.
For example, I am hosting my library at www.someWebsite.com/main.js, and the imported file is at www.someWebsite.com/dynamic-HASH.js.

If the library is consumed via www.anotherWebsite.com, this is a different origin, so the import("./dynamic-HASH.js"); would fail, as it would try to grab it from www.anotherWebsite.com/dynamic-HASH.js.

from vite.

sapphi-red avatar sapphi-red commented on September 12, 2024

Do you have the file importing dynamic-HASH.js on a different origin from dynamic-HASH.js? For example, www.someWebsite.com/main.js imports www.anotherWebsite.com/dynamic-HASH.js.
In that case, you should make dynamic-HASH.js an entry point instead of a implicit chunk generated by dynamic import, otherwise the entry signature can be changed by rollup (some export might be removed if main.js doesn't use it).

If you have main.js and dynamic-HASH.js served on the same origin and importing main.js from a different origin, then import can work with relative path. It will be resolved from main.js and not the location.href/document.baseURI.

from vite.

Kerryliu avatar Kerryliu commented on September 12, 2024

If you have main.js and dynamic-HASH.js served on the same origin and importing main.js from a different origin, then import can work with relative path. It will be resolved from main.js and not the location.href/document.baseURI.

Interesting, you are correct, I tested this and this does seem to be the case. I vaguely remember I had problems with webpack around a similar issue (maybe it handles dynamic imports differently?), so that might be why I assumed the latter to be true.

Thanks for the help/clarification!

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.