にchainWebpack
セクションがありvue.config.js
ます。私
chainWebpack: config => {
// Add "node_modules" alias
config.resolve.alias
.set('node_modules', path.join(__dirname, './node_modules'));
config.devtool('source-map');
// Do not remove whitespaces
config.module.rule('vue')
.use('vue-loader')
.loader('vue-loader')
.tap(options => {
options.compilerOptions.preserveWhitespace = true
return options
})
}
代わりにinfrastructureLogging
ロギングをリダイレクトするセクションを含めたい:stdout
stderr
module.exports = {
//...
infrastructureLogging: {
stream: process.stdout,
},
};
chainWebpack
セクションを使用してそれを行うにはどうすればよいですか?