-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.js
More file actions
104 lines (96 loc) · 2.14 KB
/
Copy pathnuxt.config.js
File metadata and controls
104 lines (96 loc) · 2.14 KB
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
// Node imports
import path from "node:path";
// Local imports
import package_json from "./package.json";
// Constants
const __dirname = import.meta.dirname;
export default defineNuxtConfig({
runtimeConfig: {
public: {
API_URL: "api_pegghy.geode-solutions.com",
COMMAND_BACK: "pegghy-back",
COMMAND_VIEWER: "pegghy-viewer",
NUXT_ROOT_PATH: __dirname,
PROJECT: package_json.name,
},
},
compatibilityDate: "2025-07-15",
extends: ["@geode/opengeodeweb-front"],
alias: {
"@pegghy": path.resolve(__dirname, "app"),
},
vuetify: {
defaults: {
VImg: {
draggable: false,
},
},
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: "PEGGHy",
meta: [
{ charset: "utf8" },
{ 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" }],
},
},
modules: [
"vuetify-nuxt-module",
[
"@pinia/nuxt",
{
autoImports: ["storeToRefs", "defineStore"],
},
],
"@vueuse/nuxt",
],
imports: {
scan: false,
},
css: ["/assets/css/main.css"],
vite: {
server: {
fs: {
allow: [
path.resolve(__dirname, "../../node_modules/@fontsource"),
path.resolve(__dirname, "../../node_modules/@mdi/font"),
],
},
},
optimizeDeps: {
include: ["@kitware/vtk.js", "xmlbuilder2", "spark-md5"],
},
watch: {
ignored: ["**"],
},
},
});