@sveltejs/kit 1.8.6 → 1.8.7

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": "@sveltejs/kit",
3
- "version": "1.8.6",
3
+ "version": "1.8.7",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/sveltejs/kit",
@@ -87,11 +87,11 @@ export function not_found(req, res, base) {
87
87
  if (type === 'text/html') {
88
88
  res.setHeader('Content-Type', 'text/html');
89
89
  res.end(
90
- `The server is configured with a public base URL of /path-base - did you mean to visit <a href="${prefixed}">${prefixed}</a> instead?`
90
+ `The server is configured with a public base URL of ${base} - did you mean to visit <a href="${prefixed}">${prefixed}</a> instead?`
91
91
  );
92
92
  } else {
93
93
  res.end(
94
- `The server is configured with a public base URL of /path-base - did you mean to visit ${prefixed} instead?`
94
+ `The server is configured with a public base URL of ${base} - did you mean to visit ${prefixed} instead?`
95
95
  );
96
96
  }
97
97
  }