Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
OC-2372: fixed server.js
  • Loading branch information
wenjunche committed Feb 8, 2023
commit 8f4d1f8a8ebb6dec35fabff3b450c57aa93aba19
2 changes: 1 addition & 1 deletion self-hosting-example/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ app.use(express.static('public'));

// For the demo
app.get('/manifest', (req, res) => {
res.sendFile(path.join(__dirname, 'app.json'));
res.sendFile(path.join(__dirname, 'public', 'app.json'));
});
// For the demo
app.get('/app', (req, res) => {
Expand Down