Fixed issues while trying to serve assets. #1822

This commit is contained in:
morpheus65535 2022-05-04 13:23:24 -04:00
parent 7fa2a607be
commit 89fa25cddf
1 changed files with 2 additions and 1 deletions

View File

@ -120,7 +120,8 @@ def web_assets(filename):
mimetypes.add_type('image/png', '.png')
mimetypes.add_type('image/x-icon', '.ico')
path = os.path.join(os.path.dirname(__file__), '..', 'frontend', 'build', 'assets')
# send_from_directory needs an absolute path then we'll use realpath() here
path = os.path.realpath(os.path.join(os.path.dirname(os.path.dirname(__file__)), 'frontend', 'build', 'assets'))
return send_from_directory(path, filename)