diff --git a/server.js b/server.js index 8974318..bde8fee 100644 --- a/server.js +++ b/server.js @@ -70,7 +70,7 @@ app.use( // API endpoint to save config app.post('/api/save-config', async (req, res) => { try { - const configPath = path.join(__dirname, 'main_web/src/assets/config.json'); + const configPath = path.join(__dirname, 'app/src/assets/config.json'); const configData = JSON.stringify(req.body, null, 2); await fs.writeFile(configPath, configData, 'utf8');