3👍
try this
STATICFILES_DIRS = [
BASE_DIR.parent / "vue-proj/dist/static'",
]
static root is use for production it will collect all your css and js from static folder to static root dir.
STATIC_ROOT = BASE_DIR.parent / "static_cdn"
Source:stackexchange.com