Skip to content

Commit cd0a678

Browse files
committed
fix: incorrect nuxt custom element types
1 parent 4d239f9 commit cd0a678

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

web/nuxt.config.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
import path from 'path';
2+
3+
4+
25
import removeConsole from 'vite-plugin-remove-console';
36

7+
8+
9+
10+
411
/**
512
* Used to avoid redeclaring variables in the webgui codebase.
613
* @see alt solution https://github.com/terser/terser/issues/1001, https://github.com/terser/terser/pull/1038
@@ -162,10 +169,11 @@ export default defineNuxtConfig({
162169
},
163170
],
164171
},
165-
],
172+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
173+
] as any,
166174
},
167175

168176
compatibilityDate: '2024-12-05',
169177

170178
ssr: false,
171-
});
179+
});

0 commit comments

Comments
 (0)