promptlineapp 1.9.1 → 1.9.2
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/bin/cli.js +5 -5
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -1157,7 +1157,7 @@ export default defineConfig({
|
|
|
1157
1157
|
target: 'https://app.promptlineops.com',
|
|
1158
1158
|
changeOrigin: true,
|
|
1159
1159
|
rewrite: (path) => path.replace(/^\\/api\\/promptline/, '/api/v1/live'),
|
|
1160
|
-
secure:
|
|
1160
|
+
secure: false
|
|
1161
1161
|
}
|
|
1162
1162
|
}
|
|
1163
1163
|
}
|
|
@@ -2749,14 +2749,14 @@ export default function DevAdmin() {
|
|
|
2749
2749
|
target: 'https://app.local.promptlineops.com',
|
|
2750
2750
|
changeOrigin: true,
|
|
2751
2751
|
rewrite: (path) => path.replace(/^\\/api\\/promptline-local/, '/api/v1/live'),
|
|
2752
|
-
secure:
|
|
2752
|
+
secure: false
|
|
2753
2753
|
},
|
|
2754
2754
|
// Production: app.promptlineops.com
|
|
2755
2755
|
'/api/promptline': {
|
|
2756
2756
|
target: 'https://app.promptlineops.com',
|
|
2757
2757
|
changeOrigin: true,
|
|
2758
2758
|
rewrite: (path) => path.replace(/^\\/api\\/promptline/, '/api/v1/live'),
|
|
2759
|
-
secure:
|
|
2759
|
+
secure: false
|
|
2760
2760
|
}
|
|
2761
2761
|
},`
|
|
2762
2762
|
}
|
|
@@ -2887,13 +2887,13 @@ async function getProject(gitUrl, destName) {
|
|
|
2887
2887
|
target: 'https://app.local.promptlineops.com',
|
|
2888
2888
|
changeOrigin: true,
|
|
2889
2889
|
rewrite: (path) => path.replace(/^\\/api\\/promptline-local/, '/api/v1/live'),
|
|
2890
|
-
secure:
|
|
2890
|
+
secure: false
|
|
2891
2891
|
},
|
|
2892
2892
|
'/api/promptline': {
|
|
2893
2893
|
target: 'https://app.promptlineops.com',
|
|
2894
2894
|
changeOrigin: true,
|
|
2895
2895
|
rewrite: (path) => path.replace(/^\\/api\\/promptline/, '/api/v1/live'),
|
|
2896
|
-
secure:
|
|
2896
|
+
secure: false
|
|
2897
2897
|
},`;
|
|
2898
2898
|
viteContent = viteContent.replace(
|
|
2899
2899
|
/(proxy:\s*\{)/,
|