~cytrogen/masto-fe

ref: 644c5fddd8d04d3f59a2e9a716614bab748796c3 masto-fe/app/javascript/mastodon/utils/config.js -rw-r--r-- 202 bytes
644c5fdd — Matt Jankowski Refactor `Status.tagged_with_all` for brakeman SQL injection warning (#25941) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
import ready from '../ready';

export let assetHost = '';

ready(() => {
  const cdnHost = document.querySelector('meta[name=cdn-host]');
  if (cdnHost) {
    assetHost = cdnHost.content || '';
  }
});