Kopie van https://gitlab.com/studieverenigingvia/ict/centurion met een paar aanpassingen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.0 KiB
25 lines
1.0 KiB
module.exports = {
|
|
webpack: function (config, env) {
|
|
return config;
|
|
},
|
|
devServer: function (configFunction) {
|
|
// Return the replacement function for create-react-app to use to generate the Webpack
|
|
// Development Server config. "configFunction" is the function that would normally have
|
|
// been used to generate the Webpack Development server config - you can use it to create
|
|
// a starting configuration to then modify instead of having to create a config from scratch.
|
|
return function (proxy, allowedHost) {
|
|
// Create the default config by calling configFunction with the proxy/allowedHost parameters
|
|
const config = configFunction(proxy, allowedHost);
|
|
|
|
config.proxy = {
|
|
"/socket.io": {
|
|
target: "http://localhost:3001",
|
|
ws: true
|
|
}
|
|
}
|
|
|
|
// Return your customised Webpack Development Server config.
|
|
return config;
|
|
};
|
|
}
|
|
}
|
|
|