mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
10 lines
304 B
Ruby
10 lines
304 B
Ruby
# This file is licensed under the MIT License (MIT) available on
|
|
# http://opensource.org/licenses/MIT.
|
|
|
|
#svg.rb is a workaround to allow built-in jekyll server
|
|
#to serve svg files with jekyll --server.
|
|
|
|
require 'webrick'
|
|
include WEBrick
|
|
|
|
WEBrick::HTTPUtils::DefaultMimeTypes.store 'svg', 'image/svg+xml'
|