23 lines
494 B
JavaScript
23 lines
494 B
JavaScript
const pkg = require('./package')
|
|
|
|
module.exports = {
|
|
apiPath: 'stubs/api',
|
|
webpackConfig: {
|
|
output: {
|
|
publicPath: `/static/${pkg.name}/${process.env.VERSION || pkg.version}/`
|
|
}
|
|
},
|
|
/* use https://kc.admin.inno-js.ru/ to create config, navigations and features */
|
|
navigations: {
|
|
'r-and-m.main': '/r-and-m'
|
|
},
|
|
features: {
|
|
'r-and-m': {
|
|
// add your features here in the format [featureName]: { value: string }
|
|
},
|
|
},
|
|
config: {
|
|
key: 'value'
|
|
}
|
|
}
|