UNPKG

strapi-plugin-country-select

Version:

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

16 lines (15 loc) 272 B
const PLUGIN_ID = "country-select"; const register = ({ strapi }) => { strapi.customFields.register({ name: "country", plugin: PLUGIN_ID, type: "string" }); }; const index = { register }; export { index as default }; //# sourceMappingURL=index.mjs.map