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
When i use sandpack, Some resources always fail to load. :
local: http://127.0.0.1:3002
"use client"; import React from "react"; import { Sandpack } from "@codesandbox/sandpack-react"; const code = ` import { Button } from '@douyinfe/semi-ui'; export default function App() { return ( <> <Button type='primary'>primary button</Button> </> ); } `; const SandpackExample = () => { return ( <Sandpack template="vite-react-ts" files={{ "App.tsx": code, }} customSetup={{ npmRegistries: [ { enabledScopes: ["@douyinfe"], limitToScopes: true, registryUrl: "https://registry.npmmirror.com/", }, ], dependencies: { "@douyinfe/semi-ui": "latest", }, }} /> ); }; export default SandpackExample;
But after I click the refresh button many times, it might succeed once. and it has goog work in [codesandbox.io] (https://codesandbox.io/p/devbox/upbeat-gagarin-55n4sw?file=%2FApp.tsx&utm_medium=sandpack)
The text was updated successfully, but these errors were encountered:
how to fix it
Sorry, something went wrong.
it will be fetch error when url end with ?v=xxx
It should be caused by timeout. However, setting options={{ bundlerTimeOut: 120000 }} did not take effect.
<Sandpack template="vite-react-ts" files={{ "App.tsx": code, }} customSetup={{ npmRegistries: [ { enabledScopes: [], limitToScopes: false, registryUrl: "https://registry.npmmirror.com", proxyEnabled: true, }, ], dependencies: { "@douyinfe/semi-ui": "2.66.1", }, }} options={{ bundlerTimeOut: 120000 }} />
No branches or pull requests
Bug report
Packages affected
Description of the problem
When i use sandpack, Some resources always fail to load. :
local: http://127.0.0.1:3002
But after I click the refresh button many times, it might succeed once.
and it has goog work in [codesandbox.io]
(https://codesandbox.io/p/devbox/upbeat-gagarin-55n4sw?file=%2FApp.tsx&utm_medium=sandpack)
The text was updated successfully, but these errors were encountered: