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:
DJObleezy 2025-04-12 13:06:51 -07:00
parent 886e595ef4
commit 545e5a9d92

View File

@ -60,6 +60,7 @@ FILE_MAPPINGS = {
'retro-refresh.css': 'static/css/retro-refresh.css',
'blocks.css': 'static/css/blocks.css',
'notifications.css': 'static/css/notifications.css',
'console.css': 'static/css/console.css', # Added console.css
# JS files
'main.js': 'static/js/main.js',
@ -67,6 +68,7 @@ FILE_MAPPINGS = {
'blocks.js': 'static/js/blocks.js',
'BitcoinProgressBar.js': 'static/js/BitcoinProgressBar.js',
'notifications.js': 'static/js/notifications.js',
'console.js': 'static/js/console.js', # Added console.js
# Template files
'base.html': 'templates/base.html',
@ -76,6 +78,7 @@ FILE_MAPPINGS = {
'error.html': 'templates/error.html',
'blocks.html': 'templates/blocks.html',
'notifications.html': 'templates/notifications.html',
'console.html': 'templates/console.html', # Added console.html
}
# Default configuration