-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
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
Vite.js configuration #224
Comments
In order to make things also work for modern dev server/bundlers, |
I'm not familiar with recent trends in JS development. I would appreciate any contribution. Just note that |
After |
You're welcome. I'm happy that it has helped you, thanks to other members of the project. |
if your app crash in run time try add this configuration to your vite.config.js // ...
export default defineConfig({
// ...
resolve: {
mainFields: [
'browser',
'module',
'main',
'jsnext:main',
'jsnext'
]
}
}) |
Please consider adding the instruction of how can we use this project on Vite.js or either if you could make a Vite.js plugin that would be great.
The text was updated successfully, but these errors were encountered: