@taujs/server 0.5.2 → 0.5.3
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 +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2040,7 +2040,7 @@ var SSRServer = fp3(
|
|
|
2040
2040
|
viteDevServer = await setupDevServer(app, clientRoot, alias, opts.debug, opts.devNet, plugins);
|
|
2041
2041
|
}
|
|
2042
2042
|
app.addHook("onRequest", createAuthHook(routeMatchers, logger));
|
|
2043
|
-
app.get("/__taujs/
|
|
2043
|
+
app.get("/__taujs/route", async (req, reply) => {
|
|
2044
2044
|
const query = req.query;
|
|
2045
2045
|
const url = typeof query.url === "string" ? query.url : "";
|
|
2046
2046
|
if (!url) {
|