https://github.com/kipicenko/webpack-assembly
my webpack bundler
https://github.com/kipicenko/webpack-assembly
Last synced: 7 months ago
JSON representation
my webpack bundler
- Host: GitHub
- URL: https://github.com/kipicenko/webpack-assembly
- Owner: Kipicenko
- License: mit
- Created: 2022-06-12T21:18:48.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-25T20:02:56.000Z (about 3 years ago)
- Last Synced: 2025-03-05T22:44:18.384Z (10 months ago)
- Language: JavaScript
- Size: 211 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My webpack 5 bundler.
[](https://opensource.org/licenses/MIT)
## Installation
Clone this repo and npm install or yarn install.
### `yarn install` or `npm install`
## Usage
### Development server
```bash
npm start || npm run start
```
or
```bash
yarn start || yarn run start
```
---
### Production build
```bash
npm run build
```
or
```bash
yarn run build || yarn build
```
---
### Development build
```bash
npm run dev
```
or
```bash
yarn run dev || yarn dev
```
Use of svg
1) Import Svg from "arrow.svg" - ( Imported as a React component )
2) Import Svg from "arrow.svg?nc" - ( Will not be imported as a React component )
3) Import Svg from "arrow.svg?url" - ( url-loader replacement and also won't be a React component )