feat: setup services, prepare API integration

This commit is contained in:
2026-02-26 15:35:37 +07:00
parent 17f10231fb
commit 1c139eed97
17 changed files with 453 additions and 86 deletions

View File

@@ -12,8 +12,8 @@ module.exports = {
ecmaVersion: 2020
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-console': process.env.VITE_NODE_ENV === 'PRODUCTION' ? 'warn' : 'off',
'no-debugger': process.env.VITE_NODE_ENV === 'PRODUCTION' ? 'warn' : 'off',
'vue/no-deprecated-slot-attribute': 'off',
'@typescript-eslint/no-explicit-any': 'off',
}