Merge pull request #1610 from jaredevantabor/fix-sockets

Fix sockets
This commit is contained in:
Jared Tabor 2018-04-27 12:31:39 -07:00 committed by GitHub
commit 28d6983be0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,10 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="{{ STATIC_URL }}assets/favicon.ico?v={{version}}" />
<script>var $basePath = '{{ STATIC_URL }}'</script>
<script>
var $basePath = '{{ STATIC_URL }}';
window.liveUpdates = "{{ UI_LIVE_UPDATES_ENABLED }}" === "False" ? false : true;
</script>
<% htmlWebpackPlugin.files.css.forEach(file => {%>
<link href="{{ STATIC_URL }}<%= file %>" rel="stylesheet" />
<% }) %>