You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You may encounter the following issue when trying to run the plugin:
Dev server inactive
Cause
This issue is caused by an update to Vite, a dependency used by Plugma. By default, Vite is set to automatically update to the latest version, which may introduce breaking changes.
Solution
To resolve this issue, manually specify Vite version 5.4.10 in your package.json file to prevent it from automatically using the latest version.
Open your package.json file.
Locate the Vite dependency and update it to:
"vite": "5.4.10"
Run:
npm install
to apply the changes.
A fix will be published soon.
The text was updated successfully, but these errors were encountered:
When creating a new Plugma plugin using:
You may encounter the following issue when trying to run the plugin:
Cause
This issue is caused by an update to Vite, a dependency used by Plugma. By default, Vite is set to automatically update to the latest version, which may introduce breaking changes.
Solution
To resolve this issue, manually specify Vite version
5.4.10
in yourpackage.json
file to prevent it from automatically using the latest version.Open your
package.json
file.Locate the Vite dependency and update it to:
Run:
to apply the changes.
A fix will be published soon.
The text was updated successfully, but these errors were encountered: