UNPKG

259 BJavaScriptView Raw
1function getPublicPath(command, publicPath) {
2 if (command === 'build' && typeof publicPath === 'string') {
3 return /\/$/.test(publicPath) || publicPath === ''
4 ? publicPath
5 : publicPath + '/'
6 }
7 return '/'
8}
9
10module.exports = getPublicPath