是否有vscode的调试配置可以调试easywebpack的构建过程
wade-yifeng opened this issue · 1 comments
wade-yifeng commented
是否有vscode的调试配置可以调试easywebpack的构建过程
wade-yifeng commented
最近在使用这个骨架项目搭建自己的系统,觉得能够灵活使用服务端或客户端的加载还是挺方便的,但确实想了解下具体的加载和构建渲染的过程,easywebpack不是特别熟悉,不止是否有配置可以参考
return context => {
options.router.push(context.state.url);
const matchedComponents = options.router.getMatchedComponents();
if (!matchedComponents) {
return Promise.reject({ code: '404' });
}
return Promise.all(
matchedComponents.map(component => {
if (component.preFetch) {
return component.preFetch(options.store);
}
return null;
})
).then(() => {
context.state = Object.assign(options.store.state, context.state);
return new Vue(options);
});
};