refactor: have build served from dist folder

This commit is contained in:
Daniel D Orlando 2023-04-01 13:28:37 -07:00
parent 6498ab79a4
commit eb2d9bac33
2 changed files with 4 additions and 15 deletions

View file

@ -23,7 +23,7 @@ const projectPath = path.join(__dirname, '..', '..', 'client');
app.use(errorController);
app.use(cors());
app.use(express.json());
app.use(express.static(path.join(projectPath, 'public')));
app.use(express.static(path.join(projectPath, 'dist')));
app.set('trust proxy', 1); // trust first proxy
app.use(
session({
@ -69,7 +69,7 @@ const projectPath = path.join(__dirname, '..', '..', 'client');
});
app.get('/*', routes.authenticatedOrRedirect, function (req, res) {
res.sendFile(path.join(projectPath, 'public', 'index.html'));
res.sendFile(path.join(projectPath, 'dist', 'index.html'));
});
app.listen(port, host, () => {