Package Exports
- @ovh-ux/manager-webpack-dev-server
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@ovh-ux/manager-webpack-dev-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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