summaryrefslogtreecommitdiff
path: root/webpack/webpack.config.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-03-03 09:49:47 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-03-03 09:49:47 +0900
commit41c9426929c599396c8d9e8ab8ac5120a1310988 (patch)
treefa46ac850c4205d51e5e8f77d75a6d3f4e29d959 /webpack/webpack.config.ts
parentv3933 (diff)
downloadmisskey-41c9426929c599396c8d9e8ab8ac5120a1310988.tar.gz
misskey-41c9426929c599396c8d9e8ab8ac5120a1310988.tar.bz2
misskey-41c9426929c599396c8d9e8ab8ac5120a1310988.zip
nanka iroior
Diffstat (limited to 'webpack/webpack.config.ts')
-rw-r--r--webpack/webpack.config.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack/webpack.config.ts b/webpack/webpack.config.ts
index cfb1299708..a4ef75d8ed 100644
--- a/webpack/webpack.config.ts
+++ b/webpack/webpack.config.ts
@@ -60,7 +60,7 @@ module.exports = Object.keys(langs).map(lang => {
rules: [{
test: /\.vue$/,
exclude: /node_modules/,
- use: ['cache-loader', {
+ use: [{
loader: 'vue-loader',
options: {
cssSourceMap: false,
@@ -134,7 +134,7 @@ module.exports = Object.keys(langs).map(lang => {
]
}, {
test: /\.(eot|woff|woff2|svg|ttf)([\?]?.*)$/,
- loader: 'file-loader'
+ loader: 'url-loader'
}, {
test: /\.ts$/,
exclude: /node_modules/,