https://github.com/marcoabcorrea/contacts
https://github.com/marcoabcorrea/contacts
css js vanilla-javascript webpack
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcoabcorrea/contacts
- Owner: MarcoABCorrea
- License: mit
- Created: 2021-02-20T11:29:12.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-23T20:31:15.000Z (over 5 years ago)
- Last Synced: 2025-08-23T04:29:54.291Z (11 months ago)
- Topics: css, js, vanilla-javascript, webpack
- Language: JavaScript
- Homepage:
- Size: 258 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Webpack Frontend Starterkit
[](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)
- JavaScript Linting via [eslint-loader](https://github.com/MoOx/eslint-loader)
- SASS Support via [sass-loader](https://github.com/jtangelder/sass-loader)
- Autoprefixing of browserspecific CSS rules via [postcss](https://postcss.org/) and [autoprefixer](https://github.com/postcss/autoprefixer)
- Style Linting via [stylelint](https://stylelint.io/)
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`.