无法在 angular ag 网格中应用主题 angular 10
Unable to apply theme in angular ag grid in angular 10
我在 ag-grid-community 25.1 版本的项目中使用 Angular 10。在 运行 带有 ag-theme-alphine.css 的应用程序上,我收到以下错误。
Error: Failed to find '../node_modules/ag-grid-community/dist/styles/ag-theme-alpine.css'
in [
/Users/ranjith/workspace/my-project/src/app/pages/headercard/components/programs-header
]
styles.scss
@import "../node_modules/ag-grid-community/dist/styles/ag-grid.scss";
@import "../node_modules/ag-grid-community/dist/styles/ag-theme-alpine.css";
我确定我在 node_modules 目录中有这个文件。
注意:我在我的项目中使用了 scss。
您可以检查主题中的 sass 文件夹。我遇到了类似的问题并使用下面的 scss 文件修复了它
@import "../node_modules/ag-grid-community/dist/styles/ag-theme-alpine/sass/ag-theme-alpine";
我在 ag-grid-community 25.1 版本的项目中使用 Angular 10。在 运行 带有 ag-theme-alphine.css 的应用程序上,我收到以下错误。
Error: Failed to find '../node_modules/ag-grid-community/dist/styles/ag-theme-alpine.css'
in [
/Users/ranjith/workspace/my-project/src/app/pages/headercard/components/programs-header
]
styles.scss
@import "../node_modules/ag-grid-community/dist/styles/ag-grid.scss";
@import "../node_modules/ag-grid-community/dist/styles/ag-theme-alpine.css";
我确定我在 node_modules 目录中有这个文件。 注意:我在我的项目中使用了 scss。
您可以检查主题中的 sass 文件夹。我遇到了类似的问题并使用下面的 scss 文件修复了它
@import "../node_modules/ag-grid-community/dist/styles/ag-theme-alpine/sass/ag-theme-alpine";