mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-05-04 23:23:43 +03:00
13 lines
211 B
JavaScript
13 lines
211 B
JavaScript
const socketOptions = {
|
|
hostname: 'remotedev.io',
|
|
port: 443,
|
|
protocol: 'https',
|
|
autoReconnect: true,
|
|
secure: true,
|
|
autoReconnectOptions: {
|
|
randomness: 30000
|
|
}
|
|
};
|
|
|
|
export default socketOptions;
|