Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikbabchenko/webpack-boilerplate-v4-simple
https://github.com/nikbabchenko/webpack-boilerplate-v4-simple
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nikbabchenko/webpack-boilerplate-v4-simple
- Owner: nikbabchenko
- Created: 2020-04-16T08:23:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-31T07:14:30.000Z (almost 2 years ago)
- Last Synced: 2024-10-27T18:45:36.357Z (about 2 months ago)
- Language: JavaScript
- Size: 2.9 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Webpack Frontend Starterkit
[![Dependabot badge](https://flat.badgen.net/dependabot/wbkd/webpack-starter?icon=dependabot)](https://dependabot.com/)
A lightweight foundation for your next webpack based frontend project.
### Installation
```
npm install
```### Start Dev Server
```
npm start
```### Build Prod Version
```
npm run build
```### Features:
* ES6 Support via [babel](https://babeljs.io/) (v7)
* SASS Support via [sass-loader](https://github.com/jtangelder/sass-loader)
* Linting via [eslint-loader](https://github.com/MoOx/eslint-loader)When you run `npm run build` we use the [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) to move the css to a separate file. The css file gets included in the head of the `index.html`.