In this test, JS is build and bundle, I can verify the hello() is exist in the bundle.
page/test1.astro
<script>
function hello() {
alert("hello")
}
hello()
</script>
JS doesn't work get build, no trace of hello() found in the bundle
<Layout>
<input onclick="hello()">
</Layout>
<script>
function hello() {
alert("hello")
}
</script>
``