Skip to content

Commit

Permalink
cfg: disable auto imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ubugeeei committed Aug 10, 2024
1 parent ac061db commit efc9c43
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
<script setup lang="ts">
import { NuxtRouteAnnouncer, NuxtPage, NuxtLayout } from "#components";
</script>

<template>
<div>
<NuxtRouteAnnouncer />
<NuxtWelcome />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>
1 change: 1 addition & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
export default defineNuxtConfig({
compatibilityDate: "2024-04-03",
devtools: { enabled: true },
imports: { autoImport: false },
modules: ["@nuxt/eslint"],
eslint: {
config: {
Expand Down

0 comments on commit efc9c43

Please sign in to comment.