We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7dc46d commit 64933b2Copy full SHA for 64933b2
packages/@vue/cli-service/lib/util/validateWebpackConfig.js
@@ -28,7 +28,7 @@ module.exports = function validateWebpackConfig (
28
)
29
}
30
31
- if (target === 'app' && singleConfig.output.publicPath !== options.publicPath) {
+ if (target === 'app' && ![options.publicPath, 'auto'].includes(singleConfig.output.publicPath)) {
32
throw new Error(
33
`\n\nConfiguration Error: ` +
34
`Avoid modifying webpack output.publicPath directly. ` +
0 commit comments