You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2022/09/08 01:14:14 UTC

[isis] branch master updated: ISIS-2445: vaadin post bump cleanup

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new bee6dd13a7 ISIS-2445: vaadin post bump cleanup
bee6dd13a7 is described below

commit bee6dd13a79503a50b13f9608c77f12873de3acc
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Sep 8 03:14:09 2022 +0200

    ISIS-2445: vaadin post bump cleanup
---
 incubator/viewers/vaadin/.gitignore        | 1 +
 incubator/viewers/vaadin/ui/vite.config.ts | 9 +++++++++
 2 files changed, 10 insertions(+)

diff --git a/incubator/viewers/vaadin/.gitignore b/incubator/viewers/vaadin/.gitignore
index 6abc0102ec..9e0884e06a 100644
--- a/incubator/viewers/vaadin/.gitignore
+++ b/incubator/viewers/vaadin/.gitignore
@@ -9,6 +9,7 @@ package-lock.json
 package.json
 webpack.config.js
 webpack.generated.js
+vite.generated.ts
 pnpm*
 
 
diff --git a/incubator/viewers/vaadin/ui/vite.config.ts b/incubator/viewers/vaadin/ui/vite.config.ts
new file mode 100644
index 0000000000..4d6a0222e3
--- /dev/null
+++ b/incubator/viewers/vaadin/ui/vite.config.ts
@@ -0,0 +1,9 @@
+import { UserConfigFn } from 'vite';
+import { overrideVaadinConfig } from './vite.generated';
+
+const customConfig: UserConfigFn = (env) => ({
+  // Here you can add custom Vite parameters
+  // https://vitejs.dev/config/
+});
+
+export default overrideVaadinConfig(customConfig);