🐛 Fix VUE_APP_PUBLIC_PATH issue (#2648)

VUE_APP_PUBLIC_PATH was not working on Linux after this commit.
This commit is contained in:
m2scared 2022-01-08 08:20:33 -03:00 committed by GitHub
parent 8f0342df54
commit c129252d2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 : '/',
};