8 lines
347 B
TypeScript
8 lines
347 B
TypeScript
// Replace this with your own unpublished cast app that points at your local dev
|
|
export const CAST_DEV_APP_ID = "5FE44367";
|
|
|
|
// Chromecast SDK will only load on localhost and HTTPS
|
|
// So during local development we have to send our dev IP address,
|
|
// but then run the UI on localhost.
|
|
export const CAST_DEV_HASS_URL = "http://192.168.1.234:8123";
|