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 139e693 commit 970ade9Copy full SHA for 970ade9
packages/@vue/cli-service/lib/util/validateWebpackConfig.js
@@ -28,7 +28,7 @@ module.exports = function validateWebpackConfig (
28
)
29
}
30
31
- if (target === 'app' && ![options.publicPath, 'auto'].includes(singleConfig.output.publicPath)) {
+ if (target === 'app' && singleConfig.output.publicPath !== options.publicPath) {
32
throw new Error(
33
`\n\nConfiguration Error: ` +
34
`Avoid modifying webpack output.publicPath directly. ` +
0 commit comments