waveterm/webpack.share.dev.js
2023-08-21 21:37:04 -07:00

45 lines
1.3 KiB
JavaScript

const webpack = require("webpack");
const merge = require("webpack-merge");
const common = require("./webpack.share.js");
const path = require("path");
const CopyPlugin = require("copy-webpack-plugin");
const VERSION = require("./version.js");
var merged = merge.merge(common, {
mode: "development",
output: {
path: path.resolve(__dirname, "webshare/dist-dev"),
filename: "[name].js",
},
devtool: "source-map",
devServer: {
static: {
directory: path.join(__dirname, "./webshare"),
},
port: 9001,
headers: {
"Cache-Control": "no-store",
},
devMiddleware: {
publicPath: "/dist-dev/",
},
allowedHosts: "all",
hot: false,
liveReload: false,
},
watchOptions: {
aggregateTimeout: 200,
},
});
var definePlugin = new webpack.DefinePlugin({
__PROMPT_DEV__: "true",
__PROMPT_VERSION__: JSON.stringify(VERSION),
__PROMPT_BUILD__: JSON.stringify("devbuild"),
__PROMPT_API_ENDPOINT__: JSON.stringify("https://ot2e112zx5.execute-api.us-west-2.amazonaws.com/dev"),
__PROMPT_WSAPI_ENDPOINT__: JSON.stringify("wss://5lfzlg5crl.execute-api.us-west-2.amazonaws.com/dev"),
});
merged.plugins.push(definePlugin);
module.exports = merged;