Vue 3 warning "tags with side effects" is breaking Production
So far, this is the best solution I've found.
Replace:
<script>
// JS CODE HERE
</script>
With:
<component :is="'script'">
// JS Here
</component>
However, I'd prefer a global setting so that I don't have to do this for every plugin. Right now my app feels very brittle in case anyone on my team adds another CMS plugin.
I don't want the app just breaking as soon as it comes across a <script>
tag...