├── .gitignore ├── bundler ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js ├── package.json ├── readme.md ├── src ├── index.html ├── index.js └── style │ └── main.css └── static └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webpack-three-js-template/HEAD/.gitignore -------------------------------------------------------------------------------- /bundler/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webpack-three-js-template/HEAD/bundler/webpack.common.js -------------------------------------------------------------------------------- /bundler/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webpack-three-js-template/HEAD/bundler/webpack.dev.js -------------------------------------------------------------------------------- /bundler/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webpack-three-js-template/HEAD/bundler/webpack.prod.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webpack-three-js-template/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webpack-three-js-template/HEAD/readme.md -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webpack-three-js-template/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webpack-three-js-template/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webpack-three-js-template/HEAD/src/style/main.css -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------