-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
46 lines (45 loc) · 1.18 KB
/
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
44
45
46
export default defineNuxtConfig({
devtools: { enabled: false },
ssr: false,
modules: ["nuxt-electron", "nuxt-icon", "@nuxt/ui", "@vueuse/nuxt"],
app: {
head: {
title: "Last.fm discord status",
},
},
colorMode: {
preference: "dark",
},
css: ["@/styles/global.scss"],
vite: {
css: {
preprocessorOptions: {
scss: {
additionalData: '@use "@/styles/_colors.scss" as *;',
},
},
},
},
router: {
options: {
hashMode: !process.env.VITE_DEV_SERVER_URL,
},
},
electron: {
build: [
{
// Main-Process entry file of the Electron App.
entry: "electron/main.ts",
},
{
entry: "electron/preload.ts",
onstart(args) {
// Notify the Renderer-Process to reload the page when the Preload-Scripts build is complete,
// instead of restarting the entire Electron App.
args.reload();
},
},
],
renderer: {},
},
});