vite-plugin-rpx 0.11.24 → 0.11.25
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/dist/index.js +5 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -26715,7 +26715,11 @@ async function startProxies(options) {
|
|
|
26715
26715
|
vitePluginUsage: option.vitePluginUsage || false,
|
|
26716
26716
|
verbose: option.verbose || false,
|
|
26717
26717
|
_cachedSSLConfig: mergedOptions._cachedSSLConfig,
|
|
26718
|
-
changeOrigin: option.changeOrigin || false
|
|
26718
|
+
changeOrigin: option.changeOrigin || false,
|
|
26719
|
+
loadBalancer: option.loadBalancer,
|
|
26720
|
+
auth: option.auth,
|
|
26721
|
+
path: option.path,
|
|
26722
|
+
pathRewrites: option.pathRewrites
|
|
26719
26723
|
});
|
|
26720
26724
|
} catch (err) {
|
|
26721
26725
|
debugLog("proxies", `Failed to start proxy for ${option.to}: ${err}`, option.verbose);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-plugin-rpx",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.11.
|
|
4
|
+
"version": "0.11.25",
|
|
5
5
|
"description": "A modern and smart reverse proxy. Vite plugin.",
|
|
6
6
|
"author": "Chris Breuer <chris@stacksjs.org>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"typecheck": "bunx tsc --noEmit"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@stacksjs/rpx": "0.11.
|
|
50
|
+
"@stacksjs/rpx": "0.11.25",
|
|
51
51
|
"@stacksjs/tlsx": "^0.13.9"
|
|
52
52
|
},
|
|
53
53
|
"simple-git-hooks": {
|