Commit 47a16529ea37b333e1619122a8dc5804b7392b96

Authored by José Maria Villac Pinheiro
1 parent bf15a348

V. 0.7.2 - Another test with production.

Showing 2 changed files with 19 additions and 1 deletions   Show diff stats
client/public/index1.html 0 → 100644
... ... @@ -0,0 +1,18 @@
  1 +<!-- Html start page -->
  2 +<!DOCTYPE html>
  3 +<html lang="en">
  4 + <head>
  5 + <meta charset="utf-8">
  6 + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7 + <meta name="theme-color" content="#000000">
  8 + <link rel="manifest" href="%PUBLIC_URL%/manifest.json">
  9 + <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
  10 + <title>NEXUS1</title>
  11 + </head>
  12 + <body>
  13 + <noscript>
  14 + You need to enable JavaScript to run this app.
  15 + </noscript>
  16 + <div id="root"></div>
  17 + </body>
  18 +</html>
... ...
routes/reactMap.js
1 1 module.exports = router => {
2 2 router.get("/consumer", function (req, res, next) {
3   - res.redirect("../client/public/index.html");
  3 + res.redirect("../public/index1.html");
4 4 });
5 5 };
6 6 \ No newline at end of file
... ...