Skip to content

Final Notes

Some final notes and preparations for the next walkthrough.

As we will use this library in the next walkthrough we should set up the possibility of developing both projects in parallel. To make this possible, both servers must be operated on a separate port. The Port "8081" should be a good choice, in contrast to the default port "8080". Change this in the file webpack.config.js in the root folder:

webpack.config.js

1
2
3
4
5
module.exports = {
  devServer: {
    port: 8081
  }
};