From cff5f9e492d6479dace61fb7aa0224d845c1d916 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Sat, 2 Feb 2019 01:20:48 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=BA?= =?UTF-8?q?=D0=B8=20=D0=BA=D0=BE=D0=BD=D1=84=D0=B8=D0=B3=D0=B0=20webpack?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/webpack.base.config.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/build/webpack.base.config.js b/build/webpack.base.config.js index ae07bc58..db7b4af7 100644 --- a/build/webpack.base.config.js +++ b/build/webpack.base.config.js @@ -33,16 +33,14 @@ module.exports = { test: /\.gif$/, loader: "url-loader", options: { - name: "images/[name]-[hash:6].[ext]", - limit: 10000 + name: "images/[name]-[hash:6].[ext]" } }, { test: /\.png$/, loader: "url-loader", options: { - name: "images/[name]-[hash:6].[ext]", - limit: 10000 + name: "images/[name]-[hash:6].[ext]" } }, { @@ -56,7 +54,7 @@ module.exports = { test: /\.(ttf|eot|woff|woff2)$/, loader: "file-loader", options: { - prefix: "font/" + name: "fonts/[name]-[hash:6].[ext]" } }, ]