https://github.com/bamdadfr/webpack-config
Bamdad Sabbagh's webpack config
https://github.com/bamdadfr/webpack-config
github-actions html javascript npm sass webpack
Last synced: 3 months ago
JSON representation
Bamdad Sabbagh's webpack config
- Host: GitHub
- URL: https://github.com/bamdadfr/webpack-config
- Owner: bamdadfr
- License: mit
- Created: 2020-06-18T07:35:58.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-06T02:21:46.000Z (over 2 years ago)
- Last Synced: 2025-10-05T07:30:37.776Z (9 months ago)
- Topics: github-actions, html, javascript, npm, sass, webpack
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@bamdadsabbagh/webpack-config
- Size: 4.57 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#
webpack-config
Bamdad Sabbagh's webpack config
## Vendor
> [webpack](https://webpack.js.org/) config.
## npm
> [npm](https://www.npmjs.com/package/@bamdadsabbagh/webpack-config) package.
## Installation
```shell
yarn add --dev @bamdadsabbagh/webpack-config
```
## Usage
```json
{
"build": "yarn build:clean && yarn build:webpack && yarn build:serve",
"build:clean": "rm -rf dist/",
"build:webpack": "cross-env NODE_ENV=production webpack --config node_modules/@bamdadsabbagh/webpack-config/webpack.prod.js",
"build:serve": "serve -s dist/",
"dev": "cross-env NODE_ENV=development webpack serve --config node_modules/@bamdadsabbagh/webpack-config/webpack.dev.js",
"start": "yarn dev"
}
```