Git Product home page Git Product logo

Comments (6)

shellscape avatar shellscape commented on July 3, 2024 3

@kurtextrem great question, thanks for opening an issue about it. webpack-dev-server's headers option is some abstract sugar on top of express. While it's used, we determined it wasn't widely used. Since we run Koa under the hood in this plugin, it's very easy to wire up and has no restrictions on how you specify headers. Here's one way to accomplish this:

// webpack.config.js
module.exports = {
  plugins: [
    new WebpackPluginServe({
      middleware: (app, builtins) =>
        app.use(async (ctx, next) => {
          await next();
          ctx.set('X-Superhero', 'batman');
        })
    })
  ]
};

We'll add this as a recipe in as soon as we're able to. I'll also create a voting issue for direct support of an option for this, and if it reaches enough votes, we'll add a formal option for headers.

from webpack-plugin-serve.

matheus1lva avatar matheus1lva commented on July 3, 2024 2

Or you can use the proxy middleware and add any header when it gets the result from your api/mocked api.

module.exports = {
  ...,
  plugins: [
    new WebpackPluginServe({
      middleware: (app, builtins) => {
        app.use(builtins.proxy('/api', { 
          target: 'http://10.10.10.1:1337',
          onProxyRes: (proxyRes, req, res) => {
            proxyRes.headers['x-added'] = 'foobar' // add new header to response
          }
        }));
      }
    })
  ]
};

if you need headers in any other lifecycle, you can check the http-proxy-middleware docs to see the other methods.

from webpack-plugin-serve.

kurtextrem avatar kurtextrem commented on July 3, 2024 1

Thank you Andrew and @playma256 for the quick answers. Really helpful!

from webpack-plugin-serve.

shellscape avatar shellscape commented on July 3, 2024

I have created a voting issue for the feature in #37

from webpack-plugin-serve.

shellscape avatar shellscape commented on July 3, 2024

Gonna close this one as resolved for now, but will reopen if anyone requests it.

from webpack-plugin-serve.

shellscape avatar shellscape commented on July 3, 2024

Added a recipe for this to our documentation in 2636d30

from webpack-plugin-serve.

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.