From 1c168ac979a5580fe21c8c286964e897558575e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Moc?= Date: Thu, 9 May 2024 09:58:53 +0200 Subject: [PATCH] changed server.js --- frontend/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/server.js b/frontend/server.js index 421aca7..faaf5ee 100644 --- a/frontend/server.js +++ b/frontend/server.js @@ -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'));});