mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-28 20:43:56 +03:00
10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
|
export const defaultSocketOptions = {
|
||
|
secure: true,
|
||
|
hostname: 'remotedev.io',
|
||
|
port: 443,
|
||
|
autoReconnect: true,
|
||
|
autoReconnectOptions: {
|
||
|
randomness: 30000,
|
||
|
},
|
||
|
};
|