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', + } + }, +}