Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 374 Bytes

read.md

File metadata and controls

17 lines (13 loc) · 374 Bytes

npm install -- To install all the dependencies

node server.js to start the server

To use in webpack server add the following to webpack.config.js file.

devServer: {
    port: 8080,
    stats: 'errors-only',
    proxy: {
        '/api': {
            target: 'http://localhost:20403/',
            secure: true
        }
    }
},