mirror of
https://github.com/strapi/strapi.git
synced 2025-08-20 22:59:11 +00:00
12 lines
161 B
JavaScript
12 lines
161 B
JavaScript
![]() |
const config = {
|
||
|
locales: ['it', 'es', 'en'],
|
||
|
};
|
||
|
const bootstrap = () => {
|
||
|
console.log('I AM BOOTSTRAPPED');
|
||
|
};
|
||
|
|
||
|
export default {
|
||
|
config,
|
||
|
bootstrap,
|
||
|
};
|