strapi/examples/getstarted/admin/admin.config.js
soupette b769203cc3 Update tests
Signed-off-by: soupette <cyril.lpz@gmail.com>
2021-06-15 09:19:52 +02:00

14 lines
315 B
JavaScript

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;
},
};