1
0

build.ts 445 B

12345678910111213141516171819
  1. const build = {
  2. api: {
  3. host: import.meta.env.VITE_API_HOST || 'http://localhost:5001/api',
  4. timeout: parseInt(import.meta.env.VITE_API_TIMEOUT || '10000'),
  5. },
  6. button: {
  7. limit: {
  8. limits: [10, 25, 50, 100],
  9. },
  10. },
  11. document: {
  12. titleSuffix: import.meta.env.VITE_DOCUMENT_TITLE_SUFFIX || 'Herda',
  13. },
  14. localStorage: {
  15. prefix: import.meta.env.VITE_LOCAL_STORAGE_PREFIX || 'herda-',
  16. },
  17. }
  18. export default build