-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
40 lines (36 loc) · 964 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
// https://nuxt.com/docs/api/configuration/nuxt-config
import pkg from './package.json';
export default defineNuxtConfig({
// modules: ['nuxt-electron', '@nuxtjs/tailwindcss', '@pinia/nuxt'],
modules: ['@nuxtjs/tailwindcss', '@pinia/nuxt'],
components: [{ path: '~/components/mapComponents' }, '~/components'],
// vite: {
// build: {
// rollupOptions: {
// external: ['panzoom'],
// },
// },
// },
// routeRules: {
// '/routes': { ssr: false },
// '/settings/*': { ssr: false },
// },
ssr: false,
runtimeConfig: {
public: {
version: pkg.version,
name: pkg.name,
productName: 'TrainLink Command',
},
},
devtools: {
enabled: true,
},
// electron: {
// build: [
// {
// entry: 'electron/main.ts',
// },
// ],
// },
});