rats-search/build/webpack.app.config.js
Alexey Kasyanchuk d8afce8964 web -> desktop
2018-01-31 19:02:28 +03:00

17 lines
380 B
JavaScript

const path = require("path");
const merge = require("webpack-merge");
const base = require("./webpack.base.config");
module.exports = env => {
return merge(base(env), {
entry: {
background: "./src/background/background.js",
app: "./src/app/index.js"
},
output: {
filename: "[name].js",
path: path.resolve(__dirname, "../app")
}
});
};