Skip to content

Commit

Permalink
feat: add BUILD_ENTRY_POINT environment variable (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerki authored Oct 17, 2022
1 parent 725b076 commit 5203db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/paths.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const resolveOwn = (relativePath) =>

module.exports = {
projBuild: resolveProj("build"),
projEntry: resolveModule(resolveProj, "src/index"),
projEntry: resolveModule(resolveProj, process.env.BUILD_ENTRY_POINT || "src/index"),
projPublicDir: resolveProj(process.env.PUBLIC_DIR || "app"),
projRoot: resolveProj("."),
projSrc: resolveProj("src"),
Expand Down

0 comments on commit 5203db5

Please sign in to comment.