UNPKG

ar-design

Version:

AR Design is a (react | nextjs) ui library.

13 lines (12 loc) 312 B
// Başlangıç default config let config = { headers: { Accept: "application/json", "Content-Type": "application/json", }, }; // Runtime (getter / setter) export const getApiConfig = () => config; export const setApiConfig = (newConfig) => { config = { ...config, ...newConfig }; };