Giter Site home page Giter Site logo

Comments (6)

vincentpalita avatar vincentpalita commented on May 1, 2024 2

I found a way to do that with browsersync by simulating how the webpack-hot-middleware plugin works.
Inside your rewriteRules you can add:

const browser = browserSync.create()
const config = webpack(webpackConfig);
config.plugin('done', () => {
    try {
        browser.reload();
    } catch (e) {
    }
})

from webpack-dev-middleware.

sokra avatar sokra commented on May 1, 2024 1

Not this way, but in another way.

The webpack-dev-server has a configuration option to wrap another server. Just set contentBase to your url.

Example:

  • grunt-connect on port 8081.
  • grunt-webpack: webpack-dev-server on port 8080 with contentBase = "http://localhost:8081".
  • http://localhost:8080/webpack-dev-server/index.html (live reloading)
  • http://localhost:8080/index.html or http://localhost:8081/index.html (not live reloading)

from webpack-dev-middleware.

sokra avatar sokra commented on May 1, 2024

https://github.com/webpack/webpack-dev-server

from webpack-dev-middleware.

sokra avatar sokra commented on May 1, 2024

http://webpack.github.io/docs/webpack-dev-server.html

from webpack-dev-middleware.

okonet avatar okonet commented on May 1, 2024

This doesn't answer my question... I know there is webpack-dev-server and I know how to configure & start it. The problem is, I'm using grunt-connect as a web-server for several reasons and I'd like to have webpack-dev-server running along with connect using middleware. Is it possible to have live reload in this case or not?

from webpack-dev-middleware.

okonet avatar okonet commented on May 1, 2024

Thanks! This helps a lot.

from webpack-dev-middleware.

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.