From 6e922166e772f837725bc470d132c27a2fcd32bf Mon Sep 17 00:00:00 2001 From: MTRNord Date: Fri, 11 May 2018 19:24:18 +0200 Subject: [PATCH] Fix css paths that got changed from matrix-react-sdk to riot-web --- webpack.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 7606a45955..8d2334e5ad 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -56,10 +56,10 @@ module.exports = { // this works similarly to the scss case, without postcss. test: /\.css$/, include: [ - path.resolve(__dirname, "node_modules/matrix-react-sdk/node_modules/highlight.js/styles"), - path.resolve(__dirname, "node_modules/matrix-react-sdk/node_modules/draft-js/dist"), - path.resolve(__dirname, "node_modules/matrix-react-sdk/node_modules/gfm.css"), - path.resolve(__dirname, "node_modules/matrix-react-sdk/node_modules/gemini-scrollbar/"), + path.resolve(__dirname, "node_modules/highlight.js/styles"), + path.resolve(__dirname, "node_modules/draft-js/dist"), + path.resolve(__dirname, "node_modules/gfm.css"), + path.resolve(__dirname, "node_modules/gemini-scrollbar/"), ], use: ExtractTextPlugin.extract({ use: "raw-loader"