mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 19:36:24 +00:00
32 lines
614 B
JavaScript
32 lines
614 B
JavaScript
|
const path = require("path");
|
||
|
const webpack = require("webpack");
|
||
|
|
||
|
module.exports = {
|
||
|
entry: "./src/index.js",
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, "./static/frontend"),
|
||
|
filename: "[name].js",
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.js$/,
|
||
|
exclude: /node_modules/,
|
||
|
use: {
|
||
|
loader: "babel-loader",
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
optimization: {
|
||
|
minimize: true,
|
||
|
},
|
||
|
plugins: [
|
||
|
new webpack.DefinePlugin({
|
||
|
"process.env": {
|
||
|
// This has effect on the react lib size
|
||
|
NODE_ENV: JSON.stringify("production"),
|
||
|
},
|
||
|
}),
|
||
|
],
|
||
|
};
|