mirror of
https://github.com/strapi/strapi.git
synced 2025-08-27 10:15:59 +00:00
14 lines
315 B
JavaScript
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;
|
|
},
|
|
};
|