Remove assets css main.css
article thumbnail

How to Build a Multiplayer (.io) Web Game, Part 1

Victor Zhou

Client Rendering : Downloading image assets + Rendering the game. Here’s what the project directory structure look like: public/ assets/. src/ client/ css/. public/assets/ contains images used by our project. const path = require ( 'path' ) ; const MiniCssExtractPlugin = require ( 'mini-css-extract-plugin' ) ; module.

59