Three.js 설치하는 방법은 크게 3가지이다. 1. 그냥 파일로 다운로드하기 code >> download 클릭 >> build >> three.module.js 사용 https://threejs.org/ Three.js – JavaScript 3D Library threejs.org 2. npm 으로 설치 npm install --save three 3. 웹팩 보일러 플레이트 클론 받기 아래 보일러 플레이트를 깃 클론 받고 npm install 해주고 npm run dev 로 실행 로컬호스트 경로로 확인 랜딩페이지는 다음과 같이 설정하면 되고 const path = require('path') module.exports = { mode: 'production', entry: './src/index...