mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-12-02 06:23:53 +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,
|
|
},
|
|
};
|