gpt4 book ai didi

sass - Webpack SASS-loader include 语句中断 SASS @import 语句

转载 作者:行者123 更新时间:2023-12-05 01:29:03 29 4
gpt4 key购买 nike

所以对于背景,最初我在我的 Webpack 配置中排除了 node_modules 目录,这对我的 sass @import 语句工作正常,但是很难包含 node_modules 目录中的东西。所以我将 SASS 加载程序切换为以下内容

{
test: /\.scss$/,
include: [path.resolve(__dirname, "/src/client"), path.resolve(__dirname, "/node_modules/angular-material/")],
loader: 'style-loader!css-loader!autoprefixer-loader!sass-loader'
},

另请注意,我尝试在客户端使用和不使用尾部斜线。我所有的 src 文件,包括 sass 文件都在 ./src/client 目录中,包括子目录。现在的问题是当我运行 Webpack 时,我所有的导入语句都不再起作用。每当我尝试导入我自己的 sass 文件之一时,我都会遇到以下错误:

ERROR in ./src/client/app/app.scss
Module parse failed: /Users/mikedklein/development/vncuxf/src/client/app/app.scss Line 1: Unexpected token ILLEGAL
You may need an appropriate loader to handle this file type.
| @import 'common/common';
| @import 'general';
|
@ ./src/client/app/app.module.es6 85:0-21

如果我注释掉 include 语句,一切都很好,但我知道这不是一个好方法。作为引用,我还包含了我的配置中的解析语句:

// Resolves so require statements don't need extentions
resolve: {
extensions: ['', '.js', '.es6', '.scss', '.css', '.html', '.json'],
alias: {
angular_material_scss: __dirname + "/node_modules/angular-material/angular-material.scss"
}
}

最佳答案

所以我想我解决了这个问题

module: {
loaders: [
{
test: /\.(es6|js)$/,
exclude: /node_module/,
loader: 'babel-loader'
},
{
test: /\.css$/,
exclude: /node_modules/,
loader: 'style-loader!css-loader!autoprefixer-loader'
},
{
test: /\.scss$/,
loader: 'style-loader!css-loader!autoprefixer-loader!sass loader'
}
]
},
// This is the key need to have include paths in the sass loader option.
sassLoader: {
includePaths: [path.resolve(__dirname, './src/app'), path.resolve(__dirname, '/node_modules/angular-material')]
}

我仍然很好奇的一件事是,当 sass 文件存储在多个目录中时,这是否是最有效的方法。

关于sass - Webpack SASS-loader include 语句中断 SASS @import 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34297075/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com