LoginSignup
0
0

More than 5 years have passed since last update.

Browsersyncでsvgz形式のファイルを表示できるようにする

Last updated at Posted at 2016-09-05

Content-Encoding: gzip をHTTPヘッダに付けて送ればよいので、下記のような middleware オプションを指定するとうまく表示することができました。

middleware: [
  function (req, res, next) {
    if(req.url.match(/\.svgz$/)) {
      res.setHeader('Content-Encoding', 'gzip');
    }

    next();
  }
]

バージョン

  • Browsersync 2.14.3
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0