From 3b18d1b1fa5fe81792148b08fb28b415b9a0b3d6 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 28 Oct 2018 21:57:50 +1100 Subject: [PATCH] Fixed HashRouter being used in production. --- public/components/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/components/App.jsx b/public/components/App.jsx index cc21bea..601937e 100644 --- a/public/components/App.jsx +++ b/public/components/App.jsx @@ -72,7 +72,7 @@ class App extends React.Component { //For testing you can switch the router type let RouterType = BrowserRouter; - if(true) RouterType = HashRouter; + if(process.env.NODE_ENV === 'development') RouterType = HashRouter; return (