Skip to content

Commit

Permalink
chore(prodWebpackConfig): add proper beta/stable code check
Browse files Browse the repository at this point in the history
  • Loading branch information
mkholjuraev committed Nov 27, 2023
1 parent 30bfecb commit a3798d5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions config/prod.webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ const { config: webpackConfig, plugins } = config({
rootFolder: resolve(__dirname, '../'),
https: false,
debug: true,
...(process.env.BUILD_STABLE && { deployment: 'apps' }),
...(process.env.BUILD_BETA && { deployment: 'beta/apps' }),
...(process.env.BETA === 'true' && { deployment: 'beta/apps' }),
});

plugins.push(
Expand Down

0 comments on commit a3798d5

Please sign in to comment.