I use both webpack and django. Now I move bundled assets to /static/
directory of django each time, so I'd like to make more effective process.
I read some articles and many people recommend to use django-webpack-loader
, but I don't fully understand what it does.
I've already read the official documents below.
https://owais.lone.pw/blog/webpack-plus-reactjs-and-django/
https://406.ch/writing/our-approach-to-configuring-django-webpack-and-manifeststaticfilesstorage/
I think it's for collecting bundled assets located outside of django projects, but it seems almost same as creating a symbolic link from django project to dist/
directory in webpack.
Is there any other useful feature in django-webpack-loader
?