mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
async function fetchPricing() {
|
|
try {
|
|
const response = await fetch('https://www.primefaces.org/cdn/pricing/uikit.json', { cache: 'no-store' });
|
|
|
|
return response.json();
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default fetchPricing;
|