Should I put the alpine.js file after phx-track-static?

I want to use alpine.js and I want to import it via the script tag.

So, in the root.html.heex file I see this:

<script defer phx-track-static type="text/javascript" src={Routes.static_path(@conn, "/assets/app.js")}></script>

My question is if I should put this line:

<script defer src="https://unpkg.com/alpinejs@3.7.0/dist/cdn.min.js"></script>

After or before the phx-track-static app.js script tag? To prevent site jumping, slow down, etc.