JSFiddle - React, Tailwind, and code Playground

by Matsunaga_Ajike

HTML

/**
 * プロトコルをhttpsに固定
 * 共有のため、jsfiddleのHTMLに記載しています。
 */
 
 // .htaccess
<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTPS} off
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
</IfModule>