UNPKG

@digicms/cms

Version:

An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite

13 lines (8 loc) 238 B
'use strict'; const open = require('open'); const { getAbsoluteAdminUrl } = require('@strapi/utils'); async function openBrowser(config) { const url = getAbsoluteAdminUrl(config); return open(url); } module.exports = openBrowser;