В моем angular.json > projects > landing > architect > built > options
у меня есть:
"stylePreprocessorOptions": {
"includePaths": [
"src/theme/mixins"
]
},
, который позволяет мне импортировать стили в стиле компонентов, например:
@import "breakpoints"; // instead of ../../../../theme/mixins/breakpoints
Проблема начинается, когда я хочу собратьприложение для server
.Поскольку я не могу добавить stylePreprocessorOptions
к параметрам, созданным архитектором для сервера, я получаю следующую ошибку:
ERROR in Module build failed (from ./node_modules/sass-loader/lib/loader.js):
@import "breakpoints";
^
File to import not found or unreadable: breakpoints.
Когда я пытаюсь добавить stylePreprocessorOptions
к архитектуре server
, я получаюследующая ошибка:
Schema validation failed with the following errors:
Data path "['server']" should NOT have additional properties(stylePreprocessorOptions).
Error: Schema validation failed with the following errors:
Data path "['server']" should NOT have additional properties(stylePreprocessorOptions).
При изменении пути относительно работает:
@import "../../../../theme/mixins/breakpoints";
Есть какие-нибудь решения?