- Moved `app.config.ts` to the `app` directory - Migrated `.vue` files and other assets to the `app` directory - Updated import paths to reflect the new file locations
13 lines
301 B
Vue
13 lines
301 B
Vue
<script setup>
|
|
import errorImage from './assets/images/404.svg?raw'
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLayout name="default">
|
|
<a
|
|
class="w-full h-full max-w-[600px] mx-auto flex items-center justify-center [&_svg]:w-full"
|
|
href="/"
|
|
v-html="errorImage"
|
|
/>
|
|
</NuxtLayout>
|
|
</template>
|