mirror of
https://github.com/strapi/strapi.git
synced 2026-05-03 16:22:30 +00:00
7 lines
179 B
JavaScript
7 lines
179 B
JavaScript
module.exports = ({ env }) => ({
|
|
future: {
|
|
unstableMediaLibrary: env.bool('UNSTABLE_MEDIA_LIBRARY', false),
|
|
adminTokens: env.bool('ENABLE_ADMIN_TOKENS', true),
|
|
},
|
|
});
|