Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/educhinski/zamoyta-webpack-starter
Javascript learning
https://github.com/educhinski/zamoyta-webpack-starter
Last synced: about 1 month ago
JSON representation
Javascript learning
- Host: GitHub
- URL: https://github.com/educhinski/zamoyta-webpack-starter
- Owner: educhinski
- Created: 2020-08-10T09:53:44.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-31T09:40:29.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T01:14:53.639Z (almost 2 years ago)
- Language: JavaScript
- Size: 1.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
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`.