[Django]-How to let Django see files under dist/static generated by Vue.js compilation?

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"

Leave a comment