mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 17:56:16 +00:00
7 lines
200 B
Ruby
7 lines
200 B
Ruby
#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'
|