init source

This commit is contained in:
leejisun9
2025-08-08 13:11:33 +09:00
parent 02660627d2
commit 61d947a644
57 changed files with 1852863 additions and 0 deletions

24
app.vue Normal file
View File

@@ -0,0 +1,24 @@
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<style>
@import "./assets/css/main.css";
</style>
<script setup>
onMounted(() => {
const script = document.createElement('script')
script.src = '/dist/cy_custom.js'
script.async = true
script.onload = () => {
console.log('✅ cy_custom.js loaded')
}
script.onerror = () => {
console.error('❌ Failed to load cy_custom.js')
}
document.head.appendChild(script)
})
</script>