Skip to content

Commit

Permalink
fix: update upload url
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian authored Mar 1, 2024
1 parent 263f9d2 commit 6faded7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/blueprints/scripts/upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = function (env, compilation) {
})

instance
.post(env.server + '/blueprints/restore/' + id, data, {
.post(env.server + '/api/private/blueprints/restore/' + id, data, {
headers: {
'Content-Type': 'text/javascript',
},
Expand All @@ -48,7 +48,7 @@ module.exports = function (env, compilation) {
})

instance
.post(env.server + '/blueprints/assets', payload, {
.post(env.server + '/api/private/blueprints/assets', payload, {
headers: {
'Content-Type': 'application/json',
},
Expand Down

0 comments on commit 6faded7

Please sign in to comment.