The botman widget appears okay but when i open it to view the chat frame it gives error 404 inside the chat frame.
This is the part where i declare the botman widget
<script>
var botmanWidget = {
frameEndpoint:'https://www.youtube.com/'
aboutText: 'ssdsd',
introMessage: "✋ Hi! I'm form ItSolutionStuff.com"
title: 'BotMan'
};
</script>
<script src='https://cdn.jsdelivr.net/npm/botman-web-widget@0/build/js/widget.js'></script>
and this is the chat.html file referenced by the botmanWidget
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/botman-web-widget@0/build/assets/css/chat.min.css">
<title>BOtMANS</title>
</head>
<body>
<script id="botmanWidget" src='https://cdn.jsdelivr.net/npm/botman-web-widget@0/build/js/chat.js'></script>
</body>
</html>