# webpack-starter **Repository Path**: lxw46/webpack-starter ## Basic Information - **Project Name**: webpack-starter - **Description**: ✨ A lightweight foundation for your next webpack based frontend project. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: dependabot/add-v2-config-file - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-10-26 - **Last Updated**: 2023-07-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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) - 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`.