https://github.com/explooosion/aromaticrice
https://github.com/explooosion/aromaticrice
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/explooosion/aromaticrice
- Owner: explooosion
- Created: 2021-06-02T06:51:37.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-02T04:18:01.000Z (almost 5 years ago)
- Last Synced: 2025-01-22T03:30:07.010Z (over 1 year ago)
- Language: SCSS
- Homepage: https://www.unionrice.com.tw/aromaticrice/index.html
- Size: 157 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Webpack Frontend Starterkit
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`.