diff options
author | silverwind <me@silverwind.io> | 2023-06-27 04:45:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 02:45:24 +0000 |
commit | c71e8abbc331e2a68186aa11a4797ecd24ff6d27 (patch) | |
tree | 24488621201c7501bd6056053e9cca3de221fce1 /webpack.config.js | |
parent | 72c60f94c1a54707ebad2af0f587c08d2e8f992c (diff) | |
download | gitea-c71e8abbc331e2a68186aa11a4797ecd24ff6d27.tar.gz gitea-c71e8abbc331e2a68186aa11a4797ecd24ff6d27.zip |
Add toasts to UI (#25449)
Fixes https://github.com/go-gitea/gitea/issues/24353
In some case like async success/error, it is useful to show toasts in UI.
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js index fb442521e9..6070dae247 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -73,6 +73,12 @@ export default { 'eventsource.sharedworker': [ fileURLToPath(new URL('web_src/js/features/eventsource.sharedworker.js', import.meta.url)), ], + ...(!isProduction && { + devtest: [ + fileURLToPath(new URL('web_src/js/standalone/devtest.js', import.meta.url)), + fileURLToPath(new URL('web_src/css/standalone/devtest.css', import.meta.url)), + ], + }), ...themes, }, devtool: false, |