diff --git a/build/webpack/webpack.extension.web.config.js b/build/webpack/webpack.extension.web.config.js index c2d0875e7a0..d20bf14f81d 100644 --- a/build/webpack/webpack.extension.web.config.js +++ b/build/webpack/webpack.extension.web.config.js @@ -107,6 +107,9 @@ const config = { new webpack.IgnorePlugin({ resourceRegExp: /^\.\/locale$/, contextRegExp: /moment$/ + }), + new webpack.optimize.LimitChunkCountPlugin({ + maxChunks: 1 }) ], resolve: { diff --git a/src/platform/common/constants.ts b/src/platform/common/constants.ts index 27beba97d0a..f02b7ccb3ef 100644 --- a/src/platform/common/constants.ts +++ b/src/platform/common/constants.ts @@ -24,7 +24,7 @@ export const NOTEBOOK_SELECTOR = [ ]; export const JVSC_EXTENSION_ID = 'ms-toolsai.jupyter'; -export const AppinsightsKey = 'AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217'; +export const AppinsightsKey = '0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255'; export const DEFAULT_INTERPRETER_SETTING = 'python';