Skip to content

Commit

Permalink
🐛 Fix VUE_APP_PUBLIC_PATH issue (n8n-io#2648)
Browse files Browse the repository at this point in the history
VUE_APP_PUBLIC_PATH was not working on Linux after this commit.
  • Loading branch information
m2scared authored Jan 8, 2022
1 parent 8f0342d commit c129252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor-ui/vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ module.exports = {
},
},
},
publicPath: process.env.VUE_APP_PUBLIC_PATH && process.env.VUE_APP_PUBLIC_PATH !== '/%BASE_PATH%/' ? process.env.VUE_APP_PUBLIC_PATH : '/',
publicPath: process.env.VUE_APP_PUBLIC_PATH ? process.env.VUE_APP_PUBLIC_PATH : '/',
};

0 comments on commit c129252

Please sign in to comment.