gpt4 book ai didi

angular - 库的 stylePreprocessorOptions,我应该把它放在 angular.json 的什么位置?

转载 作者:行者123 更新时间:2023-12-03 14:20:04 26 4
gpt4 key购买 nike

我正在尝试使用 stylePreprocessorOptions为了包含我的变量文件夹的路径 用于图书馆项目 像这样:

"stylePreprocessorOptions": {
"includePaths": [
"styles/variables"
]
}

然后我使用 @import 'colors';在 scss 文件中。但它在做 ng serve 时不起作用:
@import 'colors';
^
Can't find stylesheet to import.

这是 angular.json 中的完整库:
        "ui-table": {
"root": "libs/ui/table",
"sourceRoot": "libs/ui/table/src",
"projectType": "library",
"prefix": "xxx",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "libs/ui/table/tsconfig.lib.json",
"project": "libs/ui/table/ng-package.json",
"stylePreprocessorOptions": {
"includePaths": [
"styles/variables"
]
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["libs/ui/table/tsconfig.lib.json"],
"exclude": ["**/node_modules/**"]
}
}
},
"schematics": {
"@nrwl/schematics:component": {
"styleext": "scss"
}
}
},


我如何使用 stylePreprocessorOptions在 Angular 的图书馆里?

谢谢!

最佳答案

不在 angular.json 中。
使用 styleIncludePaths 包含 scss 文件夹的路径在图书馆的 ng-package.json 中

"lib": {
"entryFile": "src/public-api.ts",
...
"styleIncludePaths": [
"relative/path/to/scss/folder"
]
...
}
最后从没有前缀路径的引用的 scss 文件夹中导入文件,如下所示
@import "filename";

关于angular - 库的 stylePreprocessorOptions,我应该把它放在 angular.json 的什么位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59053248/

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