UNPKG

@strapi/strapi

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

21 lines (19 loc) 645 B
/** * Modules given explicit Vite resolve aliases (and included in resolve.dedupe) for the admin bundle. * Single source of truth for resolution contract tests. * * @internal */ const ADMIN_VITE_ALIAS_MODULES = [ 'react', 'react-dom', 'react-router-dom', 'styled-components', 'react-redux', '@reduxjs/toolkit', '@strapi/design-system', '@radix-ui/react-tooltip', 'lodash' ]; /** Same modules passed to Vite resolve.dedupe */ const ADMIN_VITE_DEDUPE_MODULES = ADMIN_VITE_ALIAS_MODULES; export { ADMIN_VITE_ALIAS_MODULES, ADMIN_VITE_DEDUPE_MODULES }; //# sourceMappingURL=admin-vite-alias-modules.mjs.map