We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1899a81 commit 01116c7Copy full SHA for 01116c7
packages/sandpack/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "smooshpack",
3
- "version": "0.0.1",
+ "version": "0.0.2",
4
"description": "",
5
"keywords": [],
6
"main": "dist/sandpack.umd.js",
packages/sandpack/src/manager/index.ts
@@ -58,7 +58,7 @@ export interface ISandboxInfo {
58
const BUNDLER_URL =
59
process.env.CODESANDBOX_ENV === 'development'
60
? 'http://localhost:3001'
61
- : `https://sandpack-${version}.codesandbox.io`;
+ : `https://sandpack-${version.replace(/\./g, '-')}.codesandbox.io`;
62
63
export default class PreviewManager {
64
selector: string | undefined;
0 commit comments