Skip to content

Commit

Permalink
FIX output folder (needed for Dockerfile)
Browse files Browse the repository at this point in the history
  • Loading branch information
driver-deploy-2 committed Jan 19, 2024
1 parent 7afe0fb commit 85849c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rspack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ config();

// const rspack = require('@rspack/core');
const devMode = process.env.NODE_ENV === "development";
const outputPath = resolve(__dirname, devMode ? "dist" : "../server/public");
const outputPath = resolve(__dirname, devMode ? "dist" : "public");

const mode = devMode ? "development" : "production";
const serverURL = devMode ? process.env.SERVER_URL : "/api/v1";
Expand Down

0 comments on commit 85849c9

Please sign in to comment.