bust spa asset cache by build id
This commit is contained in:
@@ -5,7 +5,11 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
|
||||
<title>知识管理平台</title>
|
||||
{% for css_file in app_spa_css_files %}
|
||||
{% if app_spa_build_id %}
|
||||
<link rel="stylesheet" href="{{ url_for('serve_static', filename=css_file, v=app_spa_build_id) }}" />
|
||||
{% else %}
|
||||
<link rel="stylesheet" href="{{ url_for('serve_static', filename=css_file) }}" />
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</head>
|
||||
<body>
|
||||
@@ -16,6 +20,10 @@
|
||||
window.__APP_INITIAL_STATE__ = {{ app_spa_initial_state | tojson }};
|
||||
</script>
|
||||
{% endif %}
|
||||
{% if app_spa_build_id %}
|
||||
<script type="module" src="{{ url_for('serve_static', filename=app_spa_js_file, v=app_spa_build_id) }}"></script>
|
||||
{% else %}
|
||||
<script type="module" src="{{ url_for('serve_static', filename=app_spa_js_file) }}"></script>
|
||||
{% endif %}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user