diff --git a/web.js b/web.js index d53d19d..825d868 100644 --- a/web.js +++ b/web.js @@ -1,7 +1,7 @@ var express = require('express'); var app = express(); app.use(express.static(__dirname + '/')); //aqui você define onde está o index.html da sua aplicação. -app.get('/', function(req, res){ +app.get('/*', function(req, res){ res.redirect('/index.html'); }); app.listen(process.env.PORT || 3000); \ No newline at end of file