challenge-pl/bro.config.js
Primakov Alexandr Alexandrovich 3a65307fd0
All checks were successful
platform/bro-js/challenge-pl/pipeline/head This commit looks good
init brojs
2025-11-02 17:44:37 +03:00

24 lines
558 B
JavaScript

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: {
'challenge-pl.main': '/challenge-pl',
'link.challenge-pl.auth': '/auth'
},
features: {
'challenge-pl': {
// add your features here in the format [featureName]: { value: string }
},
},
config: {
'challenge-pl.api': '/api'
}
}