mirror of
https://github.com/strapi/strapi.git
synced 2025-08-27 02:05:56 +00:00
12 lines
285 B
JavaScript
12 lines
285 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 => {
|
|
return config;
|
|
},
|
|
};
|