kfu-24-teacher/bro.config.js

25 lines
649 B
JavaScript
Raw Permalink Normal View History

2024-11-16 13:28:47 +03:00
// eslint-disable-next-line @typescript-eslint/no-require-imports
2024-11-09 19:15:21 +03:00
const pkg = require('./package');
module.exports = {
apiPath: 'stubs/api',
webpackConfig: {
output: {
publicPath: `/static/${pkg.name}/${process.env.VERSION || pkg.version}/`
}
},
/* use https://admin.bro-js.ru/ to create config, navigations and features */
navigations: {
2024-11-16 13:28:47 +03:00
'kfu-24-teacher.main': '/kfu-24-teacher',
'kfu-24-teacher.detail': '/kfu-24-teacher/detail'
2024-11-09 19:15:21 +03:00
},
features: {
'kfu-24-teacher': {
// add your features here in the format [featureName]: { value: string }
}
},
config: {
'kfu-24-teacher.api': '/api'
}
};