9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
import { defineNuxtConfig } from "nuxt/config";
|
|
|
|
export default defineNuxtConfig({
|
|
imports: {
|
|
dirs: ["composables", "stores", "types", "middleware", "server", "utils"],
|
|
global: true,
|
|
},
|
|
});
|