journal.pl/ijl.config.js

23 lines
526 B
JavaScript
Raw Normal View History

2022-11-27 16:34:37 +03:00
const pkg = require('./package')
module.exports = {
apiPath: 'stubs/api',
webpackConfig: {
output: {
publicPath: `/static/${pkg.name}/${process.env.VERSION || pkg.version}/`
}
},
navigations: {
2023-04-15 21:07:31 +03:00
'journal.main': '/journal'
2022-11-27 16:34:37 +03:00
},
features: {
2023-04-15 21:07:31 +03:00
'journal': {
2022-11-27 16:34:37 +03:00
// add your features here in the format [featureName]: { value: string }
},
},
config: {
2023-04-15 21:07:31 +03:00
"journal.socket.url": "ws://localhost",
"journal.socket.path": "/socket.io/"
}
2022-11-27 16:34:37 +03:00
}