Giter Site home page Giter Site logo

Use relative path to client.js about poi HOT 9 CLOSED

egoist avatar egoist commented on July 16, 2024
Use relative path to client.js

from poi.

Comments (9)

egoist avatar egoist commented on July 16, 2024

I think I can add a --host option for this

from poi.

egoist avatar egoist commented on July 16, 2024

Now you can use --host your.ip to establish the dev server,

also there's a devServer option for advanced webpack-dev-server configuration, eg:

module.exports = {
  devServer: {
    proxy: {
      '/api': 'http://api.endpoint.com/pathname'
    }
  }
}

devServer is updated to wrap the express app:

module.exports = {
  devServer(app) {
    app.use(foo)
  }
}

from poi.

neves avatar neves commented on July 16, 2024

Thanks @egoist, but I'm not sure one option would be enough.
Now I have to use --host 192.168.0.10 to work, but that's a problem cause the local ip changes.
What should be changed is this:
<script src=http://localhost:4000/client.js></script>
into this:
<script src=/client.js></script>
but now, it is:
<script src=http://192.168.0.10:4000/client.js></script>

from poi.

egoist avatar egoist commented on July 16, 2024

so won't http://192.168.0.10:4000/client.js work for you?

from poi.

egoist avatar egoist commented on July 16, 2024

I guess you mean change to /client.js is a better solution than using --host option

from poi.

neves avatar neves commented on July 16, 2024

vbuild already binds to 0.0.0.0, which is great, cause I can test from other devices, that's why relative path to client.js would makes more sense.

from poi.

egoist avatar egoist commented on July 16, 2024

Updated, now it's served from /

from poi.

neves avatar neves commented on July 16, 2024

That's great!

from poi.

egoist avatar egoist commented on July 16, 2024

Oh, I guess we still need to use full path like http://host:port when developing an Electron app

from poi.

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.