PR-589725: Updating packages, fixing redux actions and fixing linting.

This commit is contained in:
2025-04-11 06:06:54 +00:00
parent d0f4f38381
commit be0bb6238f
25 changed files with 1499 additions and 992 deletions

View File

@ -41,6 +41,12 @@ if(fs.existsSync(`${ROOT_DIR}/public/img`)){
});
}
if(fs.existsSync(`${ROOT_DIR}/public/fonts`)){
copyPatterns.push({
from: `${ROOT_DIR}/public/fonts`, to: 'assets/fonts',
});
}
const frontendConfig = {
entry: {
frontend: `${ROOT_DIR}/src/frontend/index.tsx`,
@ -73,7 +79,16 @@ const frontendConfig = {
'options': {
modules: {
auto: /\.module\.\w+$/i,
}
},
url: {
filter: (url) => {
// No procesar URLs absolutas que comienzan con /
if (url.startsWith('/')) {
return false;
}
return true;
}
},
},
},
'sass-loader',