@narumitw/pi-webui 0.31.0 → 0.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/server.ts CHANGED
@@ -800,7 +800,7 @@ async function readAsset(name: string): Promise<Buffer> {
800
800
  return await readFile(runtimePath);
801
801
  } catch (error) {
802
802
  if (!isNodeError(error) || error.code !== "ENOENT") throw error;
803
- return readFile(join(process.cwd(), "extensions", "pi-webui", "src", "web", name));
803
+ return readFile(join(process.cwd(), "experimental", "pi-webui", "src", "web", name));
804
804
  }
805
805
  }
806
806