├── .gitignore ├── MIT.md ├── README.md ├── dist ├── index.bundle.js ├── index.html └── runtime.bundle.js ├── package.json ├── src ├── index.html ├── index.js └── style.css ├── webpack.config.js └── webpack.svg /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /MIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/webpack-template/HEAD/MIT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/webpack-template/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/webpack-template/HEAD/dist/index.bundle.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/webpack-template/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/runtime.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/webpack-template/HEAD/dist/runtime.bundle.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/webpack-template/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/webpack-template/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/webpack-template/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightblue; 3 | } -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/webpack-template/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/webpack-template/HEAD/webpack.svg --------------------------------------------------------------------------------