From 4581abc0ee5531ba246ab84d2c31e8d58d8be09f Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 29 May 2022 02:07:25 +0900 Subject: [PATCH] fix: parcel is default --- src/sandpack.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sandpack.tsx b/src/sandpack.tsx index 2139f24..207c9cb 100644 --- a/src/sandpack.tsx +++ b/src/sandpack.tsx @@ -111,7 +111,7 @@ export const attachToElement = (element: HTMLElement | ChildNode, options: Sandb entry: options.entry, dependencies: options.dependencies, devDependencies: options.devDependencies, - environment: options.environment ?? "static" + environment: options.environment ?? "parcel" }; const entry = options.entry; const sandpackOptions = options.options;