mirror of
https://github.com/strapi/strapi.git
synced 2025-12-13 16:08:11 +00:00
19 lines
410 B
JavaScript
19 lines
410 B
JavaScript
'use strict';
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
// TODO move the file in the config folder
|
|
|
|
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;
|
|
},
|
|
};
|