mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
9 lines
257 B
JavaScript
9 lines
257 B
JavaScript
|
/** Script to load Portal bundle for local development */
|
||
|
function loadScript(src) {
|
||
|
var script = document.createElement('script');
|
||
|
script.src = src;
|
||
|
document.head.appendChild(script);
|
||
|
}
|
||
|
|
||
|
loadScript('http://localhost:3000/static/js/bundle.js');
|