Skip to content

Commit efc9c43

Browse files
committed
cfg: disable auto imports
1 parent ac061db commit efc9c43

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

app.vue

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
<script setup lang="ts">
2+
import { NuxtRouteAnnouncer, NuxtPage, NuxtLayout } from "#components";
3+
</script>
4+
15
<template>
26
<div>
37
<NuxtRouteAnnouncer />
4-
<NuxtWelcome />
8+
<NuxtLayout>
9+
<NuxtPage />
10+
</NuxtLayout>
511
</div>
612
</template>

nuxt.config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
export default defineNuxtConfig({
33
compatibilityDate: "2024-04-03",
44
devtools: { enabled: true },
5+
imports: { autoImport: false },
56
modules: ["@nuxt/eslint"],
67
eslint: {
78
config: {

0 commit comments

Comments
 (0)