forked from jschroeter/knime-fe-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
26 lines (25 loc) · 739 Bytes
/
nuxt.config.ts
File metadata and controls
26 lines (25 loc) · 739 Bytes
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
import { preset } from "@knime/styles/config/postcss.config.cjs";
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
css: ["./assets/index.css"],
compatibilityDate: "2025-05-15",
devtools: { enabled: true },
modules: ["@nuxt/eslint", "@pinia/nuxt"],
postcss: {
plugins: {
"postcss-mixins": {},
"postcss-preset-env": preset,
},
},
runtimeConfig: {
// during dev, filled from .env file; in production, filled from environment variables
knimeServiceUser: "",
knimeServicePassword: "",
public: {
// Keys within public, will be also exposed to the client-side
},
},
routeRules: {
// TODO define rendering modes; defaults to SSR
},
});