I am trying to set my static file before the base_dir
file
like,
My root dir is Desktop/afolder/projectdir/settings.py
and my current static file in Desktop/afolder/static/blabla.js
And grab it like with
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
Above those works great, but now i am changing my static
file dir, it will be now before the base dir
like: Desktop/static/blabla.js
In this case, i am in trouble to configure my setting so that it get my static files. coz, it is before the base dir, my base dir is afolder
like Desktop/afolder/projectdir/settings.py
Can anyone help me to recognize the static file of this dir Desktop/static/blabla.js
?