summaryrefslogtreecommitdiffstats
path: root/js/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/webpack.config.js')
-rw-r--r--js/webpack.config.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/js/webpack.config.js b/js/webpack.config.js
deleted file mode 100644
index 498ed88b0..000000000
--- a/js/webpack.config.js
+++ /dev/null
@@ -1,21 +0,0 @@
-const path = require('path');
-const { VueLoaderPlugin } = require('vue-loader');
-
-module.exports = {
- entry: './app/VueComponents',
- output: {
- path: path.resolve(__dirname, '.'),
- filename: 'webpacked_vue_components.js',
- },
- module: {
- rules: [
- {
- test: /\.vue$/,
- loader: 'vue-loader',
- },
- ]
- },
- plugins: [
- new VueLoaderPlugin()
- ]
-}