diff options
| author | Rasmus Fuhse <fuhse@data-quest.de> | 2025-04-04 10:16:03 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-04-04 10:16:03 +0000 |
| commit | e10a7a729701e82cd018f915618224493dedb996 (patch) | |
| tree | 58444f890fb71f7394ada22c05a1efdb2c173223 /webpack.common.js | |
| parent | 3dcca2e59be43483b44dc86b8bb5473220f7592d (diff) | |
Resolve ""Barriere melden"-Formular: Validierung kaputt"
Closes #5466 and #5464
Merge request studip/studip!4101
Diffstat (limited to 'webpack.common.js')
| -rw-r--r-- | webpack.common.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/webpack.common.js b/webpack.common.js index 91ead2a..825dc89 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -104,6 +104,13 @@ module.exports = { { test: /\.vue$/, loader: 'vue-loader', + options: { + compilerOptions: { + isCustomElement(tag) { + return ['altcha-widget'].includes(tag); + } + } + } } ] }, |
