hizkuntza aldatzen du

This commit is contained in:
Aitor Urrutia
2022-01-15 23:18:20 +01:00
parent cefe7ed5ea
commit 63147a70ec

16
back/src/admin/app.js Normal file
View File

@@ -0,0 +1,16 @@
module.exports = {
// Custom webpack config
webpack: (config, webpack) => {
// Note: we provide webpack above so you should not `require` it
// Perform customizations to webpack config
// Important: return the mutated config
return config;
},
// App customizations
app: (config) => {
config.locales = ["es", "en"];
return config;
},
};