eddev 0.3.40 → 0.3.41

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eddev",
3
- "version": "0.3.40",
3
+ "version": "0.3.41",
4
4
  "main": "./index.js",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -18,7 +18,7 @@ const validProxyPaths = {
18
18
  }
19
19
 
20
20
  export default async function (req: NextApiRequest, res: NextApiResponse) {
21
- const name = "?robots=1"
21
+ const name = "?robots=1&proxied=1"
22
22
 
23
23
  const response = await fetchWP(
24
24
  process.env.SITE_URL + "/" + name,
@@ -25,7 +25,7 @@ export default async function (req: NextApiRequest, res: NextApiResponse) {
25
25
  }
26
26
 
27
27
  const response = await fetchWP(
28
- process.env.SITE_URL + "/" + name,
28
+ process.env.SITE_URL + "/" + name + "?proxied=1",
29
29
  {
30
30
  method: "GET",
31
31
  headers: {