46 lines
934 B
JavaScript
46 lines
934 B
JavaScript
const path = require("path");
|
|
const webpack = require("webpack");
|
|
|
|
module.exports = {
|
|
entry: "./src/index.jsx",
|
|
mode: "development",
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(js|jsx)$/,
|
|
exclude: /(node_modules|bower_components)/,
|
|
loader: "babel-loader",
|
|
options: { presets: ["@babel/env"] },
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: ["style-loader", "css-loader"],
|
|
},
|
|
],
|
|
},
|
|
resolve: { extensions: ["*", ".js", ".jsx"] },
|
|
output: {
|
|
path: path.resolve(__dirname, "dist/"),
|
|
publicPath: "/dist/",
|
|
filename: "bundle.js",
|
|
},
|
|
devServer: {
|
|
contentBase: path.join(__dirname, "public/"),
|
|
port: 3000,
|
|
publicPath: "http://localhost:3000/dist/",
|
|
hotOnly: true,
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:8080",
|
|
pathRewrite: { "^/api": "" },
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
new webpack.EnvironmentPlugin({
|
|
API_ROOT: "http://localhost:8080/"
|
|
})
|
|
],
|
|
};
|