Skip to content

Commit 13c18a4

Browse files
lukaskabcledsoft
authored andcommitted
switch react-scripts-rewired with craco, websocket tests
1 parent 8fa49f0 commit 13c18a4

16 files changed

+908
-253
lines changed

config-overrides.js

-10
This file was deleted.

craco.config.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
webpack: {
3+
configure: {
4+
module: {
5+
rules: [
6+
{
7+
// resolves https://stackoverflow.com/questions/70964723/webpack-5-in-ceate-react-app-cant-resolve-not-fully-specified-routes caused be react-stomp-hooks
8+
test: /\.m?js$/,
9+
resolve: {
10+
fullySpecified: false,
11+
},
12+
},
13+
],
14+
},
15+
},
16+
},
17+
};

0 commit comments

Comments
 (0)