├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── package.json ├── src ├── fonts │ ├── .gitkeep │ └── comic.ttf ├── img │ └── webpack.svg ├── index.html ├── js │ └── index.js └── scss │ └── style.scss └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/package.json -------------------------------------------------------------------------------- /src/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fonts/comic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/src/fonts/comic.ttf -------------------------------------------------------------------------------- /src/img/webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/src/img/webpack.svg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/src/js/index.js -------------------------------------------------------------------------------- /src/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/src/scss/style.scss -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jm-program/webpack-static-template/HEAD/webpack.config.js --------------------------------------------------------------------------------