-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
33 lines (33 loc) · 933 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: "2024-04-03",
devtools: { enabled: false },
modules: ["@privyid/persona", "@privyid/persona-icon", "@nuxtjs/tailwindcss"],
alias: {
interactjs: "interactjs",
"@testing-library/user-event": "@testing-library/user-event",
"@jill64/universal-sanitizer": "@jill64/universal-sanitizer",
webfontloader: "webfontloader",
zxcvbn: "zxcvbn",
"pdfjs-dist": "pdfjs-dist",
"pdfjs-dist/web/pdf_viewer": "pdfjs-dist/web/pdf_viewer",
vuedraggable: "vuedraggable",
},
vite: {
optimizeDeps: { include: ["scroll-into-view"] },
},
postcss: {
plugins: {
'postcss-hexrgba' : {},
'postcss-lighten-darken': {},
},
},
imports: {
presets: [
{
from: '@privyid/persona/core',
imports: ['defineTable', 'defineAsyncAdapter']
}
]
}
});