当我尝试导入material-components-web/material-components-web
时,我通过SASS导入,我收到错误,告诉我该文件未找到或无法读取。
我在主App.vue
文件中进行了导入:
<style lang="sass">
@import "material-components-web/material-components-web"
</style>
,目录如下所示:
node_modules/
(lots of packages)
@material/
(lots of material components)
material-components-web/
material-components-web.scss
src/
App.vue
main.js
index.html
package.json
webpack.config.js
我的第一次尝试解决此问题:
显然我首先想到的是,路径不正确并尝试导入../node_modules/material-components-web/material-components
,这种方式有效。但是material-components-web
也导入了东西(来自@material
的每个单独的材料组件)。所以即使加载了material-components-web
,它也会被破坏。
我还在material-components-web
的vue示例的源代码中看到他们只导入material-components-web/material-components
而不是../node_modules/material-components-web/material-components
,所以问题必须在其他地方。< / p>
然后我偶然发现了一些有类似问题的人。所有人都被告知要在他们的webpack配置中实现类似的东西:
{
loader: 'sass-loader',
options: {
sourceMap: true,
includePaths: glob.sync('packages/*/node_modules').map((d) => path.join(__dirname, d)),
},
}
我也试过了。没工作。 我克隆了vue-example材料成分网,这令人震惊,也没用。 (虽然它应该正常工作?我的意思是它是官方的例子)
所以我的问题是:这是一个错误吗?如果不是我做错了什么?
以下是一些概述的代码:
完整错误
./node_modules/css-loader!./node_modules/vue-loader/lib/style-compiler?{"vue":true,"id":"data-v-0219ec88","scoped":false,"hasInlineConfig":false}!./node_modules/sass-loader/lib/loader.js?indentedSyntax!./node_modules/vue-loader/lib/selector.js?type=styles&index=0&bustCache!./src/App.vue
Module build failed:
undefined
^
File to import not found or unreadable: material-components-web/material-components-web.
Parent style sheet: stdin
in somedirectory\src\App.vue (line 30, column 1)
@ ./node_modules/vue-style-loader!./node_modules/css-loader!./node_modules/vue-loader/lib/style-compiler?{"vue":true,"id":"data-v-0219ec88","scoped":false,"hasInlineConfig":false}!./node_modules/sass-loader/lib/loader.js?indentedSyntax!./node_modules/vue-loader/lib/selector.js?type=styles&index=0&bustCache!./src/App.vue 4:14-342 13:3-17:5 14:22-350
@ ./src/App.vue
@ ./src/main.js
@ multi (webpack)-dev-server/client?http://localhost:8080 webpack/hot/dev-server ./src/main.js
webpack.config.js的相关部分
var path = require('path')
var webpack = require('webpack')
module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
filename: 'build.js'
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
// Since sass-loader (weirdly) has SCSS as its default parse mode, we map
// the "scss" and "sass" values for the lang attribute to the right configs here.
// other preprocessors should work out of the box, no loader config like this necessary.
'scss': 'vue-style-loader!css-loader!sass-loader',
'sass': 'vue-style-loader!css-loader!sass-loader?indentedSyntax'
}
// other vue-loader options go here
}
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]'
}
}
]
},
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js'
}
},
devServer: {
historyApiFallback: true,
noInfo: true,
overlay: true
},
performance: {
hints: false
},
devtool: '#eval-source-map'
}
App.vue
<template>
<div id="app">
<!-- Html Stuff -->
</div>
</template>
<style lang="sass">
@import "material-components-web/material-components-web"
</style>
<script>
export default {
name: 'app',
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
}
}
</script>
main.js
import Vue from 'vue'
import App from './App.vue'
new Vue({
el: '#app',
render: h => h(App)
})
答案 0 :(得分:0)
我有这个确切的问题,我的解决方案是意识到我从子文件夹导入了我的一部分配置,导致@import尝试从不存在导入'@ material / button / mdc-button'包含我的配置的子文件夹下的node_modules文件夹。在webpack构建错误中,请查看它尝试从哪个路径导入。你的scss加载器会在它呕吐时将它们打印出来。
答案 1 :(得分:0)
我有一个类似的问题。从错误中可以明显看出,Webpack试图从与.vue文件相同的目录中导入文件。我的解决方案是更改webpack配置,使其包含node_modules文件夹。但是,如何实现尚不清楚。
使用Vue CLI,您可以通过vue.config.js文件执行以下操作:
module.exports = {
// ... other settings ...
configureWebpack: {
module: {
rules: [
{
test: /\.scss$/,
use: [
{
loader: 'sass-loader',
options: {
includePaths: ['node_modules']
}
}
]
}
]
}
}
}