dbgate/plugins/dbgate-plugin-xml/webpack-frontend.config.js

25 lines
438 B
JavaScript
Raw Normal View History

2022-01-30 09:30:47 +00:00
var webpack = require("webpack");
var path = require("path");
var config = {
context: __dirname + "/src/frontend",
entry: {
app: "./index.js",
},
target: "web",
output: {
path: path.resolve(__dirname, "dist"),
filename: "frontend.js",
libraryTarget: "var",
library: 'plugin',
},
// uncomment for disable minimalization
// optimization: {
// minimize: false,
// },
};
module.exports = config;