diff --git a/public/index.html b/public/index.html
index 25011915..76071ce7 100644
--- a/public/index.html
+++ b/public/index.html
@@ -5,6 +5,16 @@
+
+ <% if (process.env.NEW_RELIC_ACCOUNT_ID) { %>
+
+ <% } %>
+
<% if (htmlWebpackPlugin.options.OPTIMIZELY_PROJECT_ID) { %>
<% } %>
diff --git a/webpack.prod.config.js b/webpack.prod.config.js
new file mode 100644
index 00000000..b91fa479
--- /dev/null
+++ b/webpack.prod.config.js
@@ -0,0 +1,18 @@
+const { getBaseConfig } = require('@edx/frontend-build');
+
+const config = getBaseConfig('webpack-prod');
+
+// Filter plugins in the preset config that we don't want
+function filterPlugins(plugins) {
+ const pluginsToRemove = [
+ 'a', // "a" is the constructor name of HtmlWebpackNewRelicPlugin
+ ];
+ return plugins.filter(plugin => {
+ const pluginName = plugin.constructor && plugin.constructor.name;
+ return !pluginsToRemove.includes(pluginName);
+ });
+}
+
+config.plugins = filterPlugins(config.plugins);
+
+module.exports = config;