feat: pivot to social media workflow app
Some checks failed
Backend CI/CD / build_and_deploy (push) Has been cancelled
Frontend CI/CD / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-04-24 12:58:35 -04:00
parent 0f4acc1b6d
commit df3e602015
349 changed files with 18685 additions and 16010 deletions

View File

@@ -1,13 +1,10 @@
import axios from 'axios';
import { useAuthStore } from '@/stores/authStore.js';
import config from '@/config.js';
export function useClient() {
if (!import.meta.env.VITE_API_URL) {
throw new Error('VITE_API_URL is not provided');
}
const client = axios.create({
baseURL: import.meta.env.VITE_API_URL,
baseURL: config.apiUrl,
headers: {
'Content-Type': 'application/json'
}

View File

@@ -0,0 +1,12 @@
import { createI18n } from 'vue-i18n';
import en from '@/locales/en.json';
import fr from '@/locales/fr.json';
export const i18n = createI18n({
legacy: false,
fallbackLocale: 'en',
messages: {
en,
fr,
},
});