axios-auth-refresh has only prebuilt files, that might be the case when
vite is trying to bundle it. It seems like vite thinks that it's
constructed like:
```
export default {
default () {
// ...
}
}
```
This also fixes `jQuery is not defined` in dev
`django-channels` module has only dist files which are built with
parcel. This leads to `assignment to undeclared variable parcelRequire`
error.
A simple workaround is to add `var parcelRequire;` to the beginning of
the module.