From 106c391d5a326e97f37b15452d493ebfc5bad166 Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 23:37:37 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- .../examples/hello-world-webpack/webpack.config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 js/ui/botui/examples/hello-world-webpack/webpack.config.js diff --git a/js/ui/botui/examples/hello-world-webpack/webpack.config.js b/js/ui/botui/examples/hello-world-webpack/webpack.config.js new file mode 100644 index 0000000..45e256d --- /dev/null +++ b/js/ui/botui/examples/hello-world-webpack/webpack.config.js @@ -0,0 +1,13 @@ +module.exports = { + entry: { + app: './app.js' + }, + output: { + filename: 'build.js' + }, + resolve: { + alias: { + 'vue': 'vue/dist/vue.min.js', + } + }, +}