import Ajv from 'ajv'; import addFormats from 'ajv-formats'; const opts = typeof window === 'undefined' ? undefined : { code: { es5: true } }; export const ajv = new Ajv(opts); addFormats(ajv, { mode: 'fast' });