~cytrogen/masto-fe

ref: 785e650ab44e9ffd28f4284f68ae82007f5609bb masto-fe/app/javascript/mastodon/utils/config.js -rw-r--r-- 202 bytes
785e650a — Daniel M Brasil Fix uncaught TypeError in POST `/api/v1/featured_tags` (#25072) 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 || '';
  }
});