2022-11-27 16:34:37 +03:00
|
|
|
const pkg = require('./package')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
apiPath: 'stubs/api',
|
|
|
|
webpackConfig: {
|
|
|
|
output: {
|
|
|
|
publicPath: `/static/${pkg.name}/${process.env.VERSION || pkg.version}/`
|
|
|
|
}
|
|
|
|
},
|
|
|
|
navigations: {
|
|
|
|
'hub-video-start.main': '/hub-video-start'
|
|
|
|
},
|
|
|
|
features: {
|
|
|
|
'hub-video-start': {
|
|
|
|
// add your features here in the format [featureName]: { value: string }
|
2022-11-27 17:45:32 +03:00
|
|
|
"keyboard": {
|
|
|
|
"on": true,
|
|
|
|
"value": "true",
|
|
|
|
"key": "keyboard"
|
2022-11-29 21:36:30 +03:00
|
|
|
},
|
|
|
|
"fullScreen": {
|
|
|
|
"on": true,
|
|
|
|
"value": "true",
|
|
|
|
"key": "fullScreen"
|
2022-11-27 17:45:32 +03:00
|
|
|
}
|
2022-11-27 16:34:37 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
config: {
|
2022-11-27 18:41:04 +03:00
|
|
|
'hub-video-start.socket.url': 'value',
|
|
|
|
'hub-video-start.socket.path': 'value'
|
2022-11-27 16:34:37 +03:00
|
|
|
}
|
|
|
|
}
|