mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-24 18:43:54 +03:00
10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
export const defaultSocketOptions = {
|
|
secure: false,
|
|
hostname: 'localhost',
|
|
port: 8000,
|
|
autoReconnect: true,
|
|
autoReconnectOptions: {
|
|
randomness: 30000,
|
|
},
|
|
};
|