We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
publicPath: 'auto'
1 parent 3ddc19f commit 9f2aa63Copy full SHA for 9f2aa63
packages/@vue/cli-service/lib/util/resolveUserConfig.js
@@ -66,7 +66,9 @@ module.exports = function resolveUserConfig ({
66
}
67
68
// normalize some options
69
- ensureSlash(resolved, 'publicPath')
+ if (resolved.publicPath !== 'auto') {
70
+ ensureSlash(resolved, 'publicPath')
71
+ }
72
if (typeof resolved.publicPath === 'string') {
73
resolved.publicPath = resolved.publicPath.replace(/^\.\//, '')
74
0 commit comments