Hello,
Having trouble finding basic information for installing Launch outside of AEM 6.4 and not migrating from DTM. I've looked through the technical documents, getting started, etc. and none of them answer two fairly basic questions - 1) where do I download the Launch JS libraries and 2) how to call Launch from the head of your page.
In this simple HTML example below:
<html>
<head>
<title>My Page</title>
<script>
var dataLayer = {
"page": {
"pageName" : "My Page",
"pageURL" : "/mypage.html"
}
}
</script>
// Where do I download the Launch JS files
<script src="??? Where ???" async></script>
// Is this script call all I need to do client-side to connect to Launch, everything else - like scrapping dataLayer is done server side???
</head>