Add web prod build

This commit is contained in:
jeffvli 2023-08-08 00:10:07 -07:00
parent b3bdff446d
commit 689b40eb91
3 changed files with 138 additions and 1 deletions

View file

@ -19,6 +19,7 @@ const distPath = path.join(appPath, 'dist');
const distMainPath = path.join(distPath, 'main');
const distRemotePath = path.join(distPath, 'remote');
const distRendererPath = path.join(distPath, 'renderer');
const distWebPath = path.join(distPath, 'web');
const buildPath = path.join(releasePath, 'build');
@ -38,5 +39,6 @@ export default {
distMainPath,
distRemotePath,
distRendererPath,
distWebPath,
buildPath,
};