@ovh-ux/manager-webpack-dev-server
v4.0.2
Published
OVHcloud manager webpack development server configuration.
Downloads
49
Readme
Manager Webpack Dev Server
OVH manager webpack development server configuration.
Install
yarn add -D @ovh-ux/manager-webpack-dev-server
Usage
This configuration is meant to be merged with your webpack configuration using the webpack-merge library.
const merge = require('webpack-merge');
const devServer = require('manager-webpack-dev-server');
const devConfig = devServer.config(env);
module.exports = merge(yourWebpackConfig, devConfig);
Env
The env parameter is an object containing the following values:
const env = {
dev: [
// custom configuration to proxy some routes
{
context, // Routes to rewrite
nic,
target, // API path to target
},
],
host: '0.0.0.0', // If you want your server to be accessible externally
https: false, // true to enable https
local2API: false, // true to make 2API calls on local 8080 port
port: 9000, // Specify a port number to listen for requests.
region: 'EU', // manager region (EU, CA, US)
};
Related
- manager-webpack-config - OVH manager shared webpack configuration
Contributing
Always feel free to help out! Whether it's filing bugs and feature requests or working on some of the open issues, our contributing guide will help get you started.
License
BSD-3-Clause © OVH SAS