mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
25 lines
438 B
JavaScript
25 lines
438 B
JavaScript
|
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;
|