summaryrefslogtreecommitdiff
path: root/webpack.config.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-08-01 00:56:09 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-08-01 00:56:09 +0900
commit73d166323de0b44a71e4b6d1d961836e86847fdc (patch)
tree14c1245cbe369f01ce3ac88c9624e5a9a39aed58 /webpack.config.ts
parentrefactor (diff)
downloadsharkey-73d166323de0b44a71e4b6d1d961836e86847fdc.tar.gz
sharkey-73d166323de0b44a71e4b6d1d961836e86847fdc.tar.bz2
sharkey-73d166323de0b44a71e4b6d1d961836e86847fdc.zip
Update dependencies :rocket:
Diffstat (limited to 'webpack.config.ts')
-rw-r--r--webpack.config.ts10
1 files changed, 8 insertions, 2 deletions
diff --git a/webpack.config.ts b/webpack.config.ts
index f55efbaa23..599737b814 100644
--- a/webpack.config.ts
+++ b/webpack.config.ts
@@ -61,7 +61,9 @@ module.exports = {
}, {
loader: 'css-loader',
options: {
- modules: true
+ modules: true,
+ esModule: false, // TODO: trueにすると壊れる。Vue3移行の折にはtrueにできるかもしれない
+ url: false,
}
}, postcss, {
loader: 'sass-loader',
@@ -76,7 +78,11 @@ module.exports = {
use: [{
loader: 'vue-style-loader'
}, {
- loader: 'css-loader'
+ loader: 'css-loader',
+ options: {
+ url: false,
+ esModule: false, // TODO: trueにすると壊れる。Vue3移行の折にはtrueにできるかもしれない
+ }
}, postcss, {
loader: 'sass-loader',
options: {