We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8268e6 commit c439550Copy full SHA for c439550
server.js
@@ -9,6 +9,9 @@ var port = isProduction ? process.env.PORT : 4000;
9
app.use(express.static(__dirname + '/build'));
10
11
app.get('*', function (req, res, next) {
12
+ console.log('req: ')
13
+ console.log(req)
14
+
15
// Prevents an HTML response for API calls
16
if (req.path.indexOf('/api/') != -1) {
17
return next();
src/App.js
@@ -6,7 +6,7 @@ import './App.css';
6
class App extends React.Component {
7
8
componentDidMount() {
- window.location.replace("http://setlife.network");
+ window.location.replace("https://www.setlife.network");
}
render() {
0 commit comments