vue-router-webcache
Version:
Enable vue-router routing for google webcache(and same caches)
11 lines (10 loc) • 305 B
TypeScript
import type { Module } from '@nuxt/types';
import { CacheUrl } from '../config';
interface ModuleOptions {
cacheList?: CacheUrl[];
replacePush?: boolean;
urlGetter?: () => string;
forceVuexRouterSync?: boolean;
}
declare const nuxtModule: Module<ModuleOptions>;
export default nuxtModule;