mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
🐛 Fix VUE_APP_PUBLIC_PATH issue (#2648)
VUE_APP_PUBLIC_PATH was not working on Linux after this commit.
This commit is contained in:
parent
8f0342df54
commit
c129252d2b
|
@ -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 : '/',
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue