Bug 33173: Save and continue button in standard cataloging module broken
[koha-ffzg.git] / webpack.config.js
index e009cba..bbdcced 100644 (file)
@@ -5,7 +5,7 @@ const webpack = require('webpack');
 
 module.exports = {
   entry: {
-    main: "./koha-tmpl/intranet-tmpl/prog/js/vue/main-erm.ts",
+    erm: "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts",
   },
   output: {
     filename: "[name].js",
@@ -17,7 +17,7 @@ module.exports = {
       {
         test: /\.vue$/,
         loader: "vue-loader",
-        exclude: [path.resolve(__dirname, "cypress/")],
+        exclude: [path.resolve(__dirname, "t/cypress/")],
       },
       {
         test: /\.ts$/,
@@ -25,7 +25,7 @@ module.exports = {
         options: {
           appendTsSuffixTo: [/\.vue$/]
         },
-        exclude: [path.resolve(__dirname, "cypress/")],
+        exclude: [path.resolve(__dirname, "t/cypress/")],
       },
       {
         test: /\.css$/,