Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions extension/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const commonConfig = (
AMPLITUDE_KEY: "",
AMPLITUDE_EXPERIMENT_DEPLOYMENT_KEY: "",
SENTRY_KEY: "",
// BUILD_TYPE should be explicitly passed "development", "beta", or "production"
BUILD_TYPE: "production",
// BUILD_TYPE may be explicitly passed as "development", "beta", or "production"; defaults to "development" when omitted
BUILD_TYPE: "development",
},
) => ({
cache: true,
Expand Down Expand Up @@ -172,7 +172,7 @@ const commonConfig = (
),
SENTRY_KEY: JSON.stringify(env.SENTRY_KEY),
APP_VERSION: JSON.stringify(packageJson.version),
BUILD_TYPE: JSON.stringify(env.BUILD_TYPE || "production"),
BUILD_TYPE: JSON.stringify(env.BUILD_TYPE || "development"),
}),
new MiniCssExtractPlugin({
filename: "[name].min.css",
Expand Down
Loading