mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-06 22:48:19 +00:00
10 lines
275 B
JavaScript
10 lines
275 B
JavaScript
export function initialize() {
|
|
const socketClusterClientScript = document.createElement('script');
|
|
socketClusterClientScript.src = '/assets/socketcluster-client.min.js';
|
|
document.body.appendChild(socketClusterClientScript);
|
|
}
|
|
|
|
export default {
|
|
initialize,
|
|
};
|