strapi/examples/getstarted/admin/admin.config.js
soupette 98b3a1c738 Load strapi plugins translations
Signed-off-by: soupette <cyril.lpz@gmail.com>
2021-06-09 11:47:56 +02:00

14 lines
311 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 => {
console.log(config);
return config;
},
};