Skip to content

Commit 3393b33

Browse files
committed
Remove weird behaviour :)
1 parent 9e387ec commit 3393b33

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

fec.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ module.exports = {
1111
/**
1212
* Change to false after your app is registered in configuration files
1313
*/
14-
interceptChromeConfig: true,
14+
// interceptChromeConfig: true,
1515
/**
1616
* Add additional webpack plugins
1717
*/
1818
plugins: [process.env.ANALYZED && new BundleAnalyzerPlugin()],
19-
_unstableHotReload: process.env.HOT === 'true',
20-
routesPath: process.env.ROUTES_PATH && resolve(process.env.ROUTES_PATH),
19+
// _unstableHotReload: process.env.HOT === 'true',
20+
// routesPath: process.env.ROUTES_PATH && resolve(process.env.ROUTES_PATH),
2121
moduleFederation: {
2222
exposes: {
2323
'./RootApp': resolve(__dirname, './src/AppEntry'),

src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { Fragment } from 'react';
2-
import './App.scss';
2+
// import './App.scss';
33

44
const App = () => {
55
return <Fragment></Fragment>;

0 commit comments

Comments
 (0)