UNPKG

strapi-plugin-country-select

Version:

A strapi custom field for selecting any country based on the ISO 3166-1 country code standard.

15 lines (14 loc) 278 B
"use strict"; const PLUGIN_ID = "country-select"; const register = ({ strapi }) => { strapi.customFields.register({ name: "country", plugin: PLUGIN_ID, type: "string" }); }; const index = { register }; module.exports = index; //# sourceMappingURL=index.js.map