Skip to content

Commit 31655e4

Browse files
authored
Restoring static public-path to support local dev server (#113)
1 parent 159dfff commit 31655e4

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/admin/config/webpack.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const devConfig = {
2828
plugins: [new TsconfigPathsPlugin({ configFile: "tsconfig.dev.json" })],
2929
},
3030
output: {
31-
publicPath: "auto",
31+
publicPath: "http://localhost:8084/",
3232
},
3333
devServer: {
3434
port: 8084,

apps/app-orch/config/webpack.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const devConfig = {
1717
plugins: [new TsconfigPathsPlugin({ configFile: "tsconfig.dev.json" })],
1818
},
1919
output: {
20-
publicPath: "auto",
20+
publicPath: "http://localhost:8081/",
2121
},
2222
devServer: {
2323
port: 8081,

apps/cluster-orch/config/webpack.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const devConfig = {
1818
plugins: [new TsconfigPathsPlugin({ configFile: "tsconfig.dev.json" })],
1919
},
2020
output: {
21-
publicPath: "auto",
21+
publicPath: "http://localhost:8083/",
2222
},
2323
devServer: {
2424
port: 8083,

apps/infra/config/webpack.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const devConfig = {
3131
plugins: [new TsconfigPathsPlugin({ configFile: "tsconfig.dev.json" })],
3232
},
3333
output: {
34-
publicPath: "auto",
34+
publicPath: "http://localhost:8082/",
3535
},
3636
devServer: {
3737
open: false,

apps/root/config/webpack.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const devConfig = {
2929
plugins: [new TsconfigPathsPlugin({ configFile: "tsconfig.dev.json" })],
3030
},
3131
output: {
32-
publicPath: "auto",
32+
publicPath: "http://localhost:8080/",
3333
},
3434
devServer: {
3535
port: 8080,

0 commit comments

Comments
 (0)