Skip to content

Commit

Permalink
fix: fix favicon path error
Browse files Browse the repository at this point in the history
  • Loading branch information
abelr20 committed Aug 22, 2024
1 parent 9a9777f commit cbfc554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const PORT = process.env.NODE_ENV === 'production' ? process.env.PROD_PORT : 808
app.use(cors());
app.use(express.json());

app.use(favicon(path.join(__dirname, '../../client/dist/favicon.ico')));
app.use(favicon(path.join(__dirname, '../../client/public/favicon.ico')));

app.use(express.static(path.join(__dirname, '../../client/dist')));

Expand Down

0 comments on commit cbfc554

Please sign in to comment.