2024-09-07 11:27:38 +03:00
|
|
|
const pkg = require('./package')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
apiPath: 'stubs/api',
|
|
|
|
webpackConfig: {
|
|
|
|
output: {
|
|
|
|
publicPath: `/static/${pkg.name}/${process.env.VERSION || pkg.version}/`
|
|
|
|
}
|
|
|
|
},
|
|
|
|
navigations: {
|
2024-09-14 09:51:42 +03:00
|
|
|
'enterfront.main': '/enterfront',
|
2024-09-14 12:58:07 +03:00
|
|
|
'link.enterfront.auth': '/auth',
|
|
|
|
'link.enterfront.account': '/account',
|
2024-09-07 11:27:38 +03:00
|
|
|
},
|
|
|
|
features: {
|
|
|
|
'undefined': {
|
|
|
|
// add your features here in the format [featureName]: { value: string }
|
|
|
|
},
|
|
|
|
},
|
|
|
|
config: {
|
|
|
|
'undefined.api': '/api',
|
|
|
|
}
|
|
|
|
}
|