Add Material-UI to Next.js 2 Next.js 2 with Material-UI Example Init node project mkdir nextjs-material-ui-example && cd nextjs-material-ui-example npm init -y npm i -S next react react-dom material-ui react-tap-event-plugin with structure files: . ├── LICENSE ├── README.md ├── package.json └── pages └── index.js Add script to package.json “scripts”: { “dev”: “next”, “build”: “next build”, “start”: “next start”, “test”: “echo \”Error:… Read More