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

24 lines (21 loc) 719 B
'use strict'; /** * 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; exports.ADMIN_VITE_ALIAS_MODULES = ADMIN_VITE_ALIAS_MODULES; exports.ADMIN_VITE_DEDUPE_MODULES = ADMIN_VITE_DEDUPE_MODULES; //# sourceMappingURL=admin-vite-alias-modules.js.map