File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 35
35
"start:hmr" : " HMR=true npm start" ,
36
36
"start:local:api" : " LOCAL_API_PORT=8000 LOCAL_API_HOST=localhost KEYCLOAK_PORT=4020 npm start" ,
37
37
"start:mfe" : " FEC_STATIC_PORT=8003 npm run start" ,
38
+ "start:static" : " fec static --port=8004" ,
38
39
"stats" : " npm run build:prod --profile --json > stats.json" ,
39
40
"test" : " jest --no-cache" ,
40
41
"test:clean" : " jest --clearCache" ,
Original file line number Diff line number Diff line change 1
1
/* eslint-disable no-console */
2
+ // Todo: Uncomment for use with non-shared PatternFly packages
3
+ // import '@patternfly/patternfly/patternfly.css';
4
+ import '@patternfly/patternfly/patternfly-addons.css' ;
5
+ import './styles/global.css' ;
6
+
2
7
import NotificationsPortal from '@redhat-cloud-services/frontend-components-notifications/NotificationPortal' ;
3
8
import IntlProvider from '@redhat-cloud-services/frontend-components-translations/Provider' ;
4
9
import { getLocale } from 'components/i18n' ;
@@ -10,12 +15,6 @@ import messages from '../locales/data.json';
10
15
import App from './app' ;
11
16
import { configureStore } from './store' ;
12
17
13
- // Todo: Uncomment for use with non-shared PatternFly packages
14
- // require.resolve('@patternfly/patternfly/patternfly.css');
15
- require . resolve ( '@patternfly/patternfly/patternfly-addons.css' ) ;
16
-
17
- import './styles/global.css' ;
18
-
19
18
const costStore = configureStore ( {
20
19
// session: {
21
20
// token: getToken(),
You can’t perform that action at this time.
0 commit comments