feat(console): wire up autocomplete bundle + stylesheet in base.html
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
7aa9b0b49c
commit
2173685de6
1 changed files with 3 additions and 0 deletions
|
|
@ -9,6 +9,7 @@
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/layout.css') }}">
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/layout.css') }}">
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/components.css') }}">
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/components.css') }}">
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/logs.css') }}">
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/logs.css') }}">
|
||||||
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/console-autocomplete.css') }}">
|
||||||
{% block extra_head %}{% endblock %}
|
{% block extra_head %}{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
@ -47,5 +48,7 @@
|
||||||
<script src="{{ url_for('static', filename='js/file-tree.js') }}"></script>
|
<script src="{{ url_for('static', filename='js/file-tree.js') }}"></script>
|
||||||
<script src="{{ url_for('static', filename='js/password-reveal.js') }}"></script>
|
<script src="{{ url_for('static', filename='js/password-reveal.js') }}"></script>
|
||||||
<script defer src="{{ url_for('static', filename='js/console-history.js') }}"></script>
|
<script defer src="{{ url_for('static', filename='js/console-history.js') }}"></script>
|
||||||
|
<script defer src="{{ url_for('static', filename='vendor/vocab-rank.bundle.js') }}"></script>
|
||||||
|
<script defer src="{{ url_for('static', filename='js/console-autocomplete.js') }}"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue