From 739d575821746e5d5dc632fb53e691ad94cff364 Mon Sep 17 00:00:00 2001 From: Lakatos Andrei Date: Mon, 2 Jun 2025 13:42:37 +0300 Subject: [PATCH] fix: added test html file [PD-5039] --- src/demo/pie-api-aws.html | 239 ++++++++++++++++++++++++++++++++++++++ src/pie-loader.ts | 12 +- 2 files changed, 245 insertions(+), 6 deletions(-) create mode 100644 src/demo/pie-api-aws.html diff --git a/src/demo/pie-api-aws.html b/src/demo/pie-api-aws.html new file mode 100644 index 0000000..8b1a245 --- /dev/null +++ b/src/demo/pie-api-aws.html @@ -0,0 +1,239 @@ + + + + + + Item With Stimulus + + + +
+

render stimulus

+ +
+ +
+

no stimulus

+ +
+ + + + diff --git a/src/pie-loader.ts b/src/pie-loader.ts index 72cfe4a..3faf6ac 100644 --- a/src/pie-loader.ts +++ b/src/pie-loader.ts @@ -19,17 +19,17 @@ window["pieHelpers"] = { */ export const DEFAULT_ENDPOINTS = { prod: { - bundleBase: "https://pits-cdn.pie-api.io/bundles/", - buildServiceBase: "https://proxy.pie-api.com/bundles/" + bundleBase: "https://builder.pie-api.com/api/v1/bundles/", + buildServiceBase: "https://builder.pie-api.com/api/v1/bundles/" }, // this is actually not really used anymore? equals to dev stage: { - bundleBase: "https://pits-cdn.pie-api.io/bundles/", - buildServiceBase: "https://proxy.pie-api.com/bundles/" + bundleBase: "https://builder.pie-api.com/api/v1/bundles/", + buildServiceBase: "https://builder.pie-api.com/api/v1/bundles/" }, dev: { - bundleBase: "https://pits-cdn.pie-api.io/bundles/", - buildServiceBase: "https://proxy.dev.pie-api.com/bundles/" + bundleBase: "https://builder.pie-api.com/api/v1/bundles/", + buildServiceBase: "https://builder.pie-api.com/api/v1/bundles/" } };