https://github.com/faks/tawk-trial
https://github.com/faks/tawk-trial
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/faks/tawk-trial
- Owner: Faks
- Created: 2022-09-12T17:14:18.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-12T17:14:27.000Z (over 2 years ago)
- Last Synced: 2025-01-14T11:16:10.780Z (5 months ago)
- Language: JavaScript
- Size: 282 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`.