-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
43 lines (42 loc) · 908 Bytes
/
nuxt.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// https://nuxt.com/docs/api/configuration/nuxt-config
import vuetify, { transformAssetUrls } from "vite-plugin-vuetify";
export default defineNuxtConfig({
compatibilityDate: "2024-04-03",
devtools: { enabled: true },
build: {
transpile: ["vuetify"],
},
components: [
{
path: "~/components",
pathPrefix: false,
},
],
modules: [
(_options, nuxt) => {
nuxt.hooks.hook("vite:extendConfig", (config) => {
// @ts-expect-error
config.plugins.push(vuetify({ autoImport: true }));
});
},
"@pinia/nuxt",
],
pinia: {
storesDirs: ["./stores/**"],
},
vite: {
resolve: {
alias: {
"@stores": "./stores",
"@types": "./types",
"@components": "./components",
},
},
vue: {
template: {
transformAssetUrls,
},
},
},
plugins: ["~/plugins/vuetify/index.ts"],
});