fix: refs #6426 create constants #1228

Merged
carlossa merged 16 commits from 6426-refactorConstants into dev 2025-02-07 08:22:55 +00:00
1 changed files with 5 additions and 3 deletions
Showing only changes of commit 822058b491 - Show all commits

View File

@ -1,4 +1,6 @@
// src/boot/defaults/constants.js
export const langs = ['en', 'es'];
export const decimalPlaces = 2;
const config = {
langs: ['en', 'es'],
decimalPlaces: 2,
carlossa marked this conversation as resolved Outdated
Outdated
Review

export {
langs: ['en', 'es'],
decimalPlaces: 2
}

export { langs: ['en', 'es'], decimalPlaces: 2 }
};
export default config;