We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c3e236 commit ea2ea84Copy full SHA for ea2ea84
app-config-vite/src/index.ts
@@ -18,7 +18,8 @@ export default function appConfigVite(options: Options = {}): Plugin {
18
19
async load(id) {
20
// @ts-ignore
21
- const result = await plugin.load!.call(this, id);
+ // eslint-disable-next-line
22
+ const result: unknown = await plugin.load!.call(this, id);
23
24
watcher?.add(plugin.currentFilePaths ?? []);
25
0 commit comments