This is deprecated API and will be dropped at some point, in favor of projects shipping their own CSS. Follow https://github.com/cockpit-project/starter-kit/blob/master/webpack.config.js approach on how to use PF CSS. Also: * Replace extract-text-webpack-plugin with mini-css-webpack-plugin as the former is deprecated: https://webpack.js.org/plugins/extract-text-webpack-plugin/#usage * Upgrade PF module dependency * Reduce the css files that are linked through webpack. Instead include from the JS the CSS files and let mini-css-extract-plugin do the rest of the work
11 lines
376 B
SCSS
11 lines
376 B
SCSS
/*
|
|
* Keep in sync with https://github.com/cockpit-project/cockpit/tree/master/src/base1/patternfly-cockpit.scss
|
|
*/
|
|
|
|
$icon-font-path: 'patternfly-icons-fake-path/';
|
|
$font-path: 'patternfly-fonts-fake-path/';
|
|
|
|
@import "./patternfly-overrides-variables";
|
|
@import "~patternfly/dist/sass/patternfly";
|
|
@import "./patternfly-4-cockpit.scss";
|
|
@import "./patternfly-overrides.scss";
|