-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
110 lines (99 loc) · 2.05 KB
/
nuxt.config.js
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
export default defineNuxtConfig({
extends: ["@geode/opengeodeweb-front"],
modules: [
"nuxt-electron",
"vuetify-nuxt-module",
[
"@pinia/nuxt",
{
autoImports: ["storeToRefs", "defineStore"],
},
],
"@nuxt/devtools",
"@vueuse/nuxt",
],
electron: {
build: [
{
// Main-Process entry file of the Electron App.
entry: "electron/main.js",
},
{
entry: "electron/preload.js",
onstart(args) {
args.reload();
},
},
],
},
vuetify: {
moduleOptions: {},
vuetifyOptions: {
labComponents: true,
theme: {
defaultTheme: "lightTheme",
themes: {
lightTheme: {
dark: false,
colors: {
primary: "#3c9983",
secondary: "#424242",
accent: "#82B1FF",
error: "#FF5252",
info: "#2196F3",
success: "#4CAF50",
warning: "#FB8C00",
},
},
},
},
},
},
ssr: false,
app: {
head: {
titleTemplate: "Vease",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{
hid: "description",
name: "description",
content: "Platform for geological data visualization",
},
],
link: [{ rel: "icon", type: "image/ico", href: "/favicon.ico" }],
},
},
imports: {
dirs: ["stores", "@geode/opengeodeweb-front/stores"],
},
router: {
options: {
hashMode: true,
},
},
vue: {
compilerOptions: {
isCustomElement: (tag) => ["md-linedivider"].includes(tag),
},
},
devtools: {
enabled: process.env.NODE_ENV === "production" ? false : true,
},
css: ["assets/css/main.css"],
vite: {
optimizeDeps: {
include: ["@geode/opengeodeweb-front"],
},
watch: {
ignored: ["**"],
},
},
router: {
options: {
hashMode: true,
},
},
compatibilityDate: "2024-06-30",
});