Skip to content

Commit

Permalink
Merge pull request #991 from EscolaLMS/fix/SUD-273
Browse files Browse the repository at this point in the history
fix/SUD-273
  • Loading branch information
Haxikowy authored Jan 4, 2024
2 parents 19173e2 + 490915a commit bb23b75
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,14 @@ export default defineConfig({
access: {
strictMode: true,
},
// DUE TO BUILD ERROR
chainWebpack(config) {
config.resolve.extensions.add('.mjs');
config.module
.rule('mjs$')
.test(/\.mjs$/)
.include.add(/node_modules/)
.end()
.type('javascript/auto');
},
});
2 changes: 1 addition & 1 deletion src/locales/pl-PL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@ export default {
file_downloaded: 'Pobrano plik',
file_downloaded_error: 'Nie udało się pobrać pliku',
present: 'Obecny',
not_exercising: 'Nie ćwiczący',
not_exercising: 'Niećwiczący',
excused_absence: 'Nieobecność usprawiedliwiona',
pressSaveToCreateQuestions: 'Stwórz ten temat przed dodaniem pytań',
addNewQuestion: 'Dodaj nowe pytanie',
Expand Down

0 comments on commit bb23b75

Please sign in to comment.