1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
This commit is contained in:
Roman 2023-05-09 13:28:33 +00:00 committed by GitHub
commit 9a285cfad4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,20 +23,25 @@ const server = new WebpackDevServer({
allowedHosts: ".lens.app",
host: "localhost",
port: webpackDevServerPort,
static: buildDir, // aka `devServer.contentBase` in webpack@4
hot: "only", // use HMR only without errors
static: {
directory: buildDir,
serveIndex: true,
},
hot: true,
liveReload: false,
// historyApiFallback: true,
devMiddleware: {
writeToDisk: true,
index: "index.html",
publicPath: "/build",
},
proxy: {
"^/$": "/build/",
},
// proxy: {
// "^/$": "/build/",
// },
client: {
overlay: false, // don't show warnings and errors on top of rendered app view
logging: "error",
logging: "info",
reconnect: true,
},
}, compiler);