1

I'm fairly new to webpack and I'm trying to understand what's the proper way to include my assets folder into the dist folder using webpack (or one of its plugins).

This is the structure of my project:

├── package.json
├── webpack.config.js
├── src
│   ├── index.html
│   ├── app.js
│   ├── components
│   │   ├── ...
│   ├── assets
│   │   ├── factory.png
│   │   ├── factory_white.png
Cœur
  • 37,241
  • 25
  • 195
  • 267
mfirry
  • 3,634
  • 1
  • 26
  • 36

1 Answers1

0

I managed to solve my own issue by reading around about copy-webpack-plugin

mfirry
  • 3,634
  • 1
  • 26
  • 36