From 56f9149e84bb81227dfed3c81ca04d6f5c5ac38f Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 13 Feb 2020 17:00:17 +0000 Subject: [PATCH] update webpack paths Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 3c7e1c94b2..688b39cbf3 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -34,7 +34,7 @@ module.exports = (env, argv) => { "bundle": "./src/vector/index.js", "indexeddb-worker": "./src/vector/indexeddb-worker.js", "mobileguide": "./src/vector/mobile_guide/index.js", - "usercontent": "./node_modules/matrix-react-sdk/src/vector/usercontent/index.js", + "usercontent": "./node_modules/matrix-react-sdk/src/usercontent/index.js", // CSS themes "theme-light": "./node_modules/matrix-react-sdk/res/themes/light/css/light.scss", @@ -320,7 +320,7 @@ module.exports = (env, argv) => { // This is the usercontent sandbox's entry point (separate for iframing) new HtmlWebpackPlugin({ - template: './node_modules/matrix-react-sdk/src/vector/usercontent/index.html', + template: './node_modules/matrix-react-sdk/src/usercontent/index.html', filename: 'usercontent/index.html', minify: argv.mode === 'production', chunks: ['usercontent'],