We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To prevent the vite.config.mts from complaining about the test param, we need to change the following
test
import { defineConfig } from 'vite';
do this (importing Vite config extended by Vitest):
import { defineConfig } from 'vitest/config';
https://stackoverflow.com/questions/72146352/vitest-defineconfig-test-does-not-exist-in-type-userconfigexport
The text was updated successfully, but these errors were encountered:
This doesn't seem to be happening anymore?
Sorry, something went wrong.
No branches or pull requests
To prevent the vite.config.mts from complaining about the
test
param, we need to change the followingdo this (importing Vite config extended by Vitest):
https://stackoverflow.com/questions/72146352/vitest-defineconfig-test-does-not-exist-in-type-userconfigexport
The text was updated successfully, but these errors were encountered: