Skip to content

Commit

Permalink
fix(play): proxy /runner.html locally, not just subpaths (#12282)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoMcA authored Dec 10, 2024
1 parent 800396f commit 4e9c442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/setupProxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function config(app) {
// All those root-level images like /favicon-48x48.png
app.use("/*.(png|webp|gif|jpe?g|svg)", proxy);
// Proxy play runner
app.use("/**/runner.html", proxy);
app.use("**/runner.html", proxy);
}

export default config;

0 comments on commit 4e9c442

Please sign in to comment.