Vue2とVue3では設定方法が異なります。この記事ではVue3に関する設定方法を。 npm run serve mode=mockとして起動することで、.env.mockのファイルを読み込みます。開発環境の時はNODE_ENVがdevelopmentなので、.env.developmentが読み込まれます。
defdefault_redirect_uri_callback(uri, res) newuri = urify(res.header['location'][0]) if !http?(newuri) && !https?(newuri) warn("#{newuri}: a relative URI in location header which is not recommended") warn("'The field value consists of a single absolute URI' in HTTP spec") newuri = uri + newuri end if https?(uri) && !https?(newuri) raiseBadResponseError.new("redirecting to non-https resource") end puts "redirect to: #{newuri}"if$DEBUG newuri end
HTTPClient::BadResponseError (redirecting to non-https resource)
plantuml-serverはdocker imageが既にあるので簡単に公開する事ができます。 外部サーバに立てると、誰でもアクセスできてしまうため、Basic認証を付けたいことがあります。WebのUIから使うだけならIDP連携でOAuth認証を入れてしまえば良いのですが、Visual Studio Codeのプラグインと連携させる場合は、OAuthは対応していないため、Basic認証にするしかありません。