Skip to content

Commit 89ffeee

Browse files
committed
Don't allow test-site to be loaded with client routing
Global CSS styles leak from the test site and mess up the rest of the app This happens on mouseover of the link, as routes are pre-fetched We disabled client-side routing until the styles in this app can be improved.
1 parent 69f4a68 commit 89ffeee

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pages/dev/test-site/+config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default {
2+
// Disable client-side navigation.
3+
// This allows the sub-site to use global styles without
4+
// affecting the rest of the app.
5+
// Ideally, we will clean up styles in the future.
6+
clientRouting: false,
7+
};

0 commit comments

Comments
 (0)