mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 12:47:38 +03:00
show error if static assets are not found
This commit is contained in:
parent
1b146d7149
commit
8857878ec2
1 changed files with 7 additions and 1 deletions
|
@ -116,7 +116,13 @@ if config.URL_PREFIX != '/':
|
|||
routes.static(config.URL_PREFIX + 'favicon/', 'favicon')
|
||||
routes.static(config.URL_PREFIX + 'download/', config.DOWNLOAD_DIR)
|
||||
routes.static(config.URL_PREFIX, 'ui/dist/metube')
|
||||
app.add_routes(routes)
|
||||
try:
|
||||
app.add_routes(routes)
|
||||
except ValueError as e:
|
||||
if 'ui/dist/metube' in str(e):
|
||||
raise RuntimeError('Could not find the frontend UI static assets. Please run `node_modules/.bin/ng build`') from e
|
||||
raise e
|
||||
|
||||
|
||||
|
||||
# https://github.com/aio-libs/aiohttp/pull/4615 waiting for release
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue