front/ijl.config.js
Nikolai Petukhov 098e0fe1da routing
2024-09-14 09:38:49 +03:00

24 lines
491 B
JavaScript

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