gatsby-plugin-ackee-tracker
Version:
Gatsby plugin to add Ackee Tracker to a site.
16 lines (15 loc) • 489 B
JavaScript
;
exports.__esModule = true;
exports.pluginOptionsSchema = void 0;
var pluginOptionsSchema = exports.pluginOptionsSchema = function pluginOptionsSchema(_ref) {
var Joi = _ref.Joi;
return Joi.object({
domainId: Joi.string().guid({
version: "uuidv4"
}).required(),
server: Joi.string().uri().required(),
ignoreLocalhost: Joi.boolean().default(true),
ignoreOwnVisits: Joi.boolean().default(false),
detailed: Joi.boolean().default(false)
});
};