diff --git a/server.js b/server.js index 0a564e5..1fbf80f 100755 --- a/server.js +++ b/server.js @@ -131,7 +131,7 @@ app.get('/publish', async (req, res) => { } if (responseData.uploadUrl) { - await zipProject(path.join(projectPath, 'src'), path.join(projectPath, 'disp.zip')); + await zipProject(path.join(projectPath, 'src'), path.join(projectPath, 'dist.zip')); const body = await fs.readFile(path.join(projectPath, 'dist.zip')); const response = await fetch(`${responseData.uploadUrl}`, { method: 'PUT',