Fix login-url
This commit is contained in:
parent
dd83b1f8f8
commit
8641500414
|
@ -8,7 +8,7 @@ let tmdb = require("./tmdb.js");
|
||||||
|
|
||||||
// #region Express setup
|
// #region Express setup
|
||||||
const app = express();
|
const app = express();
|
||||||
const port = 3001;
|
const port = 3000;
|
||||||
app.listen(port, () => {
|
app.listen(port, () => {
|
||||||
console.log(`Listening on port ${port}`)
|
console.log(`Listening on port ${port}`)
|
||||||
})
|
})
|
||||||
|
@ -36,15 +36,10 @@ api.use(require('express-log-url'));
|
||||||
|
|
||||||
// Serve static files from the React app
|
// Serve static files from the React app
|
||||||
app.use('/', express.static(path.join(__dirname, 'clientbuild')));
|
app.use('/', express.static(path.join(__dirname, 'clientbuild')));
|
||||||
// app.use('/tournament/', express.static(path.join(__dirname, 'clientbuild', 'index.html')));
|
app.use('/login', express.static(path.join(__dirname, 'clientbuild', 'index.html')));
|
||||||
app.use('/tournament/*', express.static(path.join(__dirname, 'clientbuild', 'index.html')));
|
app.use('/tournament/*', express.static(path.join(__dirname, 'clientbuild', 'index.html')));
|
||||||
app.use('/static', express.static(path.join(__dirname, 'clientbuild/static')));
|
app.use('/static', express.static(path.join(__dirname, 'clientbuild/static')));
|
||||||
app.use('/static/*', express.static(path.join(__dirname, 'clientbuild/static')));
|
app.use('/static/*', express.static(path.join(__dirname, 'clientbuild/static')));
|
||||||
// app.get('/*', function (req, res) {
|
|
||||||
// res.sendFile(path.join(__dirname, 'clientbuild', 'index.html'));
|
|
||||||
// });
|
|
||||||
// app.use('/*', express.static(path.join(__dirname, 'clientbuild')));
|
|
||||||
|
|
||||||
// #endregion
|
// #endregion
|
||||||
|
|
||||||
// #region PASSPORT / OAUTH
|
// #region PASSPORT / OAUTH
|
||||||
|
|
Loading…
Reference in New Issue