{ "$schema": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json", "imports": { "@/": "./src/" } }
/ /src /src/layouts/default.vue /src/components/AppBar.vue
<template> <v-app> <AppBar></AppBar> <v-main> <router-view /> </v-main> </v-app> </template> <script lang="ts" setup> import AppBar from "../components/AppBar.vue"; // works // import AppBar from "@/components/AppBar.vue"; // fails </script>
[plugin:vite:import-analysis] Failed to resolve import "@/components/AppBar.vue" from "src/layouts/default.vue". Does the file exist?