2022-01-19 09:44:30 -03:00

140 lines
5.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<meta
name="description"
content="A small and efficient cache interceptor for axios."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://axios-cache-interceptor.js.org" />
<meta property="og:title" content="Axios Cache Interceptor" />
<meta
property="og:description"
content="Small and efficient cache interceptor for axios."
/>
<meta
property="og:image"
content="https://axios-cache-interceptor.js.org/static/preview.png"
/>
<!-- Analytics :( -->
<meta
name="google-site-verification"
content="u9Nw6WpRrWDhdPTAv-LGIE9aJ0C15t7zkjuaUizDJnA"
/>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-K548ZF395X"></script>
<script>
function gtag() {
dataLayer.push(arguments);
}
(window.dataLayer = window.dataLayer || []),
gtag('js', new Date()),
gtag('config', 'G-K548ZF395X');
</script>
<script type="application/ld+json">
{
"@context": "http://www.schema.org",
"@type": "Organization",
"name": "Axios Cache Interceptor",
"url": "https://axios-cache-interceptor.js.org/",
"sameAs": ["https://github.com/ArthurFiorette/axios-cache-interceptor"],
"datePublished": "2022-01-17",
"dateModified": "2022-01-17",
"logo": "https://axios-cache-interceptor.js.org/static/preview.png",
"image": "https://axios-cache-interceptor.js.org/static/preview.png",
"description": "Axios Cache Interceptor is a small and efficient cache interceptor for axios.",
"headline": "A small and efficient cache interceptor for axios."
}
</script>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="/static/apple-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="60x60" href="/static/apple-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/static/apple-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="/static/apple-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/static/apple-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="/static/apple-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/static/apple-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/static/apple-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-icon-180x180.png" />
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/static/android-icon-192x192.png"
/>
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="96x96" href="/static/favicon-96x96.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png" />
<meta name="msapplication-TileImage" content="/static/ms-icon-144x144.png" />
<meta name="msapplication-TileColor" content="crimson" />
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="crimson" />
<title>Axios Cache Interceptor</title>
<!-- Docsify styles -->
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"
theme="light"
/>
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<nav style="user-select: none">
<a href="//bundlephobia.com/package/axios-cache-interceptor" target="_blank">
Bundlephobia
</a>
<a href="//packagephobia.com/result?p=axios-cache-interceptor" target="_blank">
Packagephobia
</a>
<span class="separator">|</span>
<a href="//github.com/arthurfiorette/axios-cache-interceptor" target="_blank">
Github
</a>
<a href="//npmjs.com/package/axios-cache-interceptor" target="_blank">Npm</a>
<a href="//jsdelivr.com/package/npm/axios-cache-interceptor" target="_blank">
JsDelivr
</a>
<span class="separator">|</span>
<a id="edit-this-page" href="#" title="Edit this page">✏️</a>
</nav>
<div id="app">Please wait...</div>
<script src="js/runkit.js"></script>
<script src="js/index.js"></script>
<!-- Docsify -->
<script
crossorigin
src="//cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"
></script>
<!-- Search plugin -->
<script
crossorigin
src="//cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.min.js"
></script>
<!-- Syntax highlighting -->
<script
crossorigin
src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-typescript.min.js"
></script>
<script
crossorigin
src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-jsx.min.js"
></script>
</body>
</html>