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
import react from "@vitejs/plugin-react"; - "@vitejs/plugin-react": "^4.3.4",
import deno from "@deno/vite-plugin" - "@deno/vite-plugin": "^1.0.3",
Without it, the following occurs:
Module "npm:react" has been externalized for browser compatibility. Cannot access "npm:react.memo" in client code. See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.
Module "npm:lucide-react" has been externalized for browser compatibility. Cannot access "npm:lucide-react.HelpCircle" in client code. See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.
Module "npm:marked" has been externalized for browser compatibility. Cannot access "npm:marked.marked" in client code. See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.
The text was updated successfully, but these errors were encountered:
Adding the following to vite.config.js resolves the issue.
using the following plugins
import react from "@vitejs/plugin-react";
-"@vitejs/plugin-react": "^4.3.4",
import deno from "@deno/vite-plugin"
-"@deno/vite-plugin": "^1.0.3",
Without it, the following occurs:
The text was updated successfully, but these errors were encountered: