每当我运行yarn dev
模块构建失败:错误:找不到模块“解析”
我什至没有使用任何resolve
模块。这是一个示例组件。没有'resolve'
模块的踪迹。
<template lang="pug">
v-app#app
router-view
</template>
<script>
export default {
name: 'App'
}
</script>
<style>
#app {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
font-family: 'News Cycle', sans-serif !important;
}
h1 {
font-size: 40px !important;
line-height: 1;
}
p {
font-size: 16px !important;
line-height: 1.6 !important;
}
.justify {
text-align: justify !important;
}
.hidden {
display: none;
}
</style>