Skip to content

Instantly share code, notes, and snippets.

@KamilLelonek
Last active August 29, 2015 14:08
Show Gist options
  • Save KamilLelonek/7b6d768ba18763aceabf to your computer and use it in GitHub Desktop.
Save KamilLelonek/7b6d768ba18763aceabf to your computer and use it in GitHub Desktop.
Dynamic shared assets depending on environment
<script>
document.write(
'<script src="' + env.ASSETS_HOST + '/javascripts/shared/shared.js">\x3C/script>'
);
document.write(
'<link rel="stylesheet" href="' + env.ASSETS_HOST + '/stylesheets/shared.css" />'
);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment