mwmbl/front-end/config.js
2023-10-25 23:12:41 +01:00

30 lines
701 B
JavaScript

/**
* This file is made for tweaking parameters on the front-end
* without having to dive in the source code.
*
* THIS IS NOT A PLACE TO PUT SENSIBLE DATA LIKE API KEYS.
* THIS FILE IS PUBLIC.
*/
export default {
componentPrefix: 'mwmbl',
publicApiURL: '/api/v1/',
// publicApiURL: 'http://localhost:5000/',
searchQueryParam: 'q',
footerLinks: [
{
name: 'Github',
icon: 'ph-github-logo-bold',
href: 'https://github.com/mwmbl/mwmbl'
},
{
name: 'Wiki',
icon: 'ph-info-bold',
href: 'https://github.com/mwmbl/mwmbl/wiki'
}
],
commands: {
'go: ': 'https://',
'search: google.com ': 'https://www.google.com/search?q=',
}
}