diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-08-01 00:56:09 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-08-01 00:56:09 +0900 |
| commit | 73d166323de0b44a71e4b6d1d961836e86847fdc (patch) | |
| tree | 14c1245cbe369f01ce3ac88c9624e5a9a39aed58 /webpack.config.ts | |
| parent | refactor (diff) | |
| download | sharkey-73d166323de0b44a71e4b6d1d961836e86847fdc.tar.gz sharkey-73d166323de0b44a71e4b6d1d961836e86847fdc.tar.bz2 sharkey-73d166323de0b44a71e4b6d1d961836e86847fdc.zip | |
Update dependencies :rocket:
Diffstat (limited to 'webpack.config.ts')
| -rw-r--r-- | webpack.config.ts | 10 |
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: { |