Skip to content

Commit ea2ea84

Browse files
committed
fix: lint
1 parent 6c3e236 commit ea2ea84

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app-config-vite/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ export default function appConfigVite(options: Options = {}): Plugin {
1818

1919
async load(id) {
2020
// @ts-ignore
21-
const result = await plugin.load!.call(this, id);
21+
// eslint-disable-next-line
22+
const result: unknown = await plugin.load!.call(this, id);
2223

2324
watcher?.add(plugin.currentFilePaths ?? []);
2425

0 commit comments

Comments
 (0)