Setup Webflow
Install SSE in Webflow
In site-wide before-head, add your script references;
<!-- Site Engine (SSE)
https://engine.sygnal.com
-->
<script
src="https://mysite.netlify.app/index.js"
dev-src="http://127.0.0.1:3000/dist/index.js"
></script> Notes
The SSE <script> element must be placed once, site-wide, in the before-HEAD custom code area.
srcmust point to the production CDNindex.jstest-src( if specified ) must point to the test CDNindex.jsdev-srcmust point to your localhost served file. Typically this does not need to be changed unless e.g. you modify your:3000port.
No CSS link references are needed, because SSE injects these automatically where they are needed.
Last updated