Tags: smich/inkinisis-app
Tags
Basic set up that contains the following: - Babel config for development and production - Hot module replacement: at this point hmr is handled by the web server. The down-side is that every time the server restarts, webpack has to recompile the resources, which is time consuming. In a later release we are going to use the webpack-dev-server as a separate process to handle the client side compilation. - Isomorphic rendering using babel-register on the server. However, css and images cannot be loaded on the server because the webpack config is not loaded on the server. In a later release we are going to use universal-webpack to sort out this issue.