fa43a0236b
refs https://github.com/TryGhost/Toolbox/issues/594 - this is the first of a set of commits to move our "apps" into the `apps/` folder, so we don't mix Ghost core and standalone apps
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');
|