strapi/examples/getstarted/admin/admin.config.js
soupette bd66c7bb2d Update generators
Signed-off-by: soupette <cyril.lpz@gmail.com>
2021-06-15 14:00:57 +02:00

16 lines
330 B
JavaScript

'use strict';
module.exports = {
webpack: (config, webpack) => {
// Note: we provide webpack above so you should not `require` it
// Perform customizations to webpack config
// Important: return the modified config
return config;
},
app: config => {
config.locales = ['fr'];
return config;
},
};