front/ijl.config.js
Nikolai Petukhov fed00edfd4 test routes
2024-09-14 12:58:07 +03:00

24 lines
511 B
JavaScript

const pkg = require('./package')
module.exports = {
apiPath: 'stubs/api',
webpackConfig: {
output: {
publicPath: `/static/${pkg.name}/${process.env.VERSION || pkg.version}/`
}
},
navigations: {
'enterfront.main': '/enterfront',
'link.enterfront.auth': '/auth',
'link.enterfront.account': '/account',
},
features: {
'undefined': {
// add your features here in the format [featureName]: { value: string }
},
},
config: {
'undefined.api': '/api',
}
}