mirror of
https://github.com/Retropex/custom-ocean.xyz-dashboard.git
synced 2025-05-13 03:30:46 +02:00
Add console asset mappings in setup.py
This commit introduces new file mappings for `console.css`, `console.js`, and `console.html` in the `setup.py` file. These additions ensure that the console-related assets are included in the project.
This commit is contained in:
parent
886e595ef4
commit
545e5a9d92
3
setup.py
3
setup.py
@ -60,6 +60,7 @@ FILE_MAPPINGS = {
|
|||||||
'retro-refresh.css': 'static/css/retro-refresh.css',
|
'retro-refresh.css': 'static/css/retro-refresh.css',
|
||||||
'blocks.css': 'static/css/blocks.css',
|
'blocks.css': 'static/css/blocks.css',
|
||||||
'notifications.css': 'static/css/notifications.css',
|
'notifications.css': 'static/css/notifications.css',
|
||||||
|
'console.css': 'static/css/console.css', # Added console.css
|
||||||
|
|
||||||
# JS files
|
# JS files
|
||||||
'main.js': 'static/js/main.js',
|
'main.js': 'static/js/main.js',
|
||||||
@ -67,6 +68,7 @@ FILE_MAPPINGS = {
|
|||||||
'blocks.js': 'static/js/blocks.js',
|
'blocks.js': 'static/js/blocks.js',
|
||||||
'BitcoinProgressBar.js': 'static/js/BitcoinProgressBar.js',
|
'BitcoinProgressBar.js': 'static/js/BitcoinProgressBar.js',
|
||||||
'notifications.js': 'static/js/notifications.js',
|
'notifications.js': 'static/js/notifications.js',
|
||||||
|
'console.js': 'static/js/console.js', # Added console.js
|
||||||
|
|
||||||
# Template files
|
# Template files
|
||||||
'base.html': 'templates/base.html',
|
'base.html': 'templates/base.html',
|
||||||
@ -76,6 +78,7 @@ FILE_MAPPINGS = {
|
|||||||
'error.html': 'templates/error.html',
|
'error.html': 'templates/error.html',
|
||||||
'blocks.html': 'templates/blocks.html',
|
'blocks.html': 'templates/blocks.html',
|
||||||
'notifications.html': 'templates/notifications.html',
|
'notifications.html': 'templates/notifications.html',
|
||||||
|
'console.html': 'templates/console.html', # Added console.html
|
||||||
}
|
}
|
||||||
|
|
||||||
# Default configuration
|
# Default configuration
|
||||||
|
Loading…
Reference in New Issue
Block a user