From 63147a70ec98c756ea8832ea7f949596b569c896 Mon Sep 17 00:00:00 2001 From: Aitor Urrutia Date: Sat, 15 Jan 2022 23:18:20 +0100 Subject: [PATCH] hizkuntza aldatzen du --- back/src/admin/app.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 back/src/admin/app.js diff --git a/back/src/admin/app.js b/back/src/admin/app.js new file mode 100644 index 0000000..8d08d2d --- /dev/null +++ b/back/src/admin/app.js @@ -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; + }, +};