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