Skip to content

Commit

Permalink
changed server.js
Browse files Browse the repository at this point in the history
  • Loading branch information
MocStepan committed May 9, 2024
1 parent c04c44d commit 1c168ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/server.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const express = require('express');
const path = require('path');
const app = express();
app.use(express.static(__dirname + '/dist/frontend'));
app.use(express.static(__dirname + '/dist/frontend/browser'));
app.get('/*', function(req,res) {
res.sendFile(path.join(__dirname+
'/dist/frontend/browser/index.html'));});
Expand Down

0 comments on commit 1c168ac

Please sign in to comment.