Closed
Description
Version
3.0.0-rc.10
Node and OS info
Node 8.9.4 / yarn 1.7.0 / Windows 10
Steps to reproduce
If you have more than 5 page entries, vue-cli will remain in the building state without displaying the compilation results.
Such as this in your vue.config.js
:
module.exports = {
pages: {
index1: 'src/index1.js',
index2: 'src/index2.js',
index3: 'src/index3.js',
index4: 'src/index4.js',
index5: 'src/index5.js',
index6: 'src/index6.js',
},
}
Each of index*.js
has similar code, such as
import Vue from 'vue'
import App from './Test.vue'
Vue.config.productionTip = false
new Vue({
render: h => h(App),
}).$mount('#app')
// Test.vue
<template>
<div class="test">
<h1>This is an testpage</h1>
</div>
</template>
What is expected?
Continue to compile...
What is actually happening?
It will remain in the building state without displaying the compilation results