We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7fcf2d commit a662beaCopy full SHA for a662bea
bin/vue-build
@@ -203,7 +203,7 @@ if (options.mount === undefined && !options.lib && /\.vue$/.test(options.entry))
203
// otherwise use it directly as webpack entry
204
if (options.mount) {
205
webpackConfig.entry.client.push(path.join(__dirname, '../lib/default-entry.es6'))
206
- webpackConfig.resolve.alias['your-tasteful-component'] = options.entry
+ webpackConfig.resolve.alias['your-tasteful-component'] = path.resolve(process.cwd(), options.entry)
207
} else {
208
webpackConfig.entry.client.push(options.entry)
209
}
0 commit comments