From 60736bab2ac974c2d2c2c106d297fa67fdaff87a Mon Sep 17 00:00:00 2001 From: syuilo <syuilotan@yahoo.co.jp> Date: Sat, 1 Aug 2020 23:30:51 +0900 Subject: [PATCH] fix(client): Broken syntax highlight --- webpack.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webpack.config.ts b/webpack.config.ts index 599737b814..a6ce8e2497 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -98,7 +98,10 @@ module.exports = { use: [{ loader: 'vue-style-loader' }, { - loader: 'css-loader' + loader: 'css-loader', + options: { + esModule: false, // TODO: trueã«ã™ã‚‹ã¨å£Šã‚Œã‚‹ã€‚Vue3移行ã®æŠ˜ã«ã¯trueã«ã§ãã‚‹ã‹ã‚‚ã—ã‚Œãªã„ + } }, postcss] }, { test: /\.(eot|woff|woff2|svg|ttf)([?]?.*)$/, -- GitLab