From 268a994db25529272665e8dcebb278978fe1e5cc Mon Sep 17 00:00:00 2001 From: Paul Derscheid Date: Tue, 1 Apr 2025 11:17:53 +0200 Subject: [PATCH] Bug 37911: (follow-up) Remove webpack.config.js --- webpack.config.js | 50 ----------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 webpack.config.js diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index 09d210be79..0000000000 --- a/webpack.config.js +++ /dev/null @@ -1,50 +0,0 @@ -const { VueLoaderPlugin } = require("vue-loader"); -const autoprefixer = require("autoprefixer"); -const path = require("path"); -const webpack = require("webpack"); - -module.exports = { - entry: { - erm: "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/erm.ts", - preservation: - "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/preservation.ts", - "admin/record_sources": - "./koha-tmpl/intranet-tmpl/prog/js/vue/modules/admin/record_sources.ts", - }, - output: { - filename: "[name].js", - path: path.resolve( - __dirname, - "koha-tmpl/intranet-tmpl/prog/js/vue/dist/" - ), - chunkFilename: "[name].js", - }, - module: { - rules: [ - { - test: /\.vue$/, - loader: "vue-loader", - exclude: [path.resolve(__dirname, "t/cypress/")], - }, - { - test: /\.ts$/, - loader: "ts-loader", - options: { - appendTsSuffixTo: [/\.vue$/], - }, - exclude: [path.resolve(__dirname, "t/cypress/")], - }, - { - test: /\.css$/, - use: ["style-loader", "css-loader"], - }, - ], - }, - plugins: [ - new VueLoaderPlugin(), - new webpack.DefinePlugin({ - __VUE_OPTIONS_API__: true, - __VUE_PROD_DEVTOOLS__: false, - }), - ], -}; -- 2.49.0