mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-18 09:00:30 -05:00
Terminate view.html rewrite rule
Otherwise anything with html in the path matches. Fixes #527
This commit is contained in:
parent
89bdeff631
commit
e323cbbb9f
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ var extraAppRoutes = [
|
||||||
// TODO: Should this be added for every route?
|
// TODO: Should this be added for every route?
|
||||||
'^/\\?',
|
'^/\\?',
|
||||||
// View html
|
// View html
|
||||||
'^/[^\/]*\.html'
|
'^/[^\/]*\.html$'
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue