facebook twitter hatena line email

「Javascript/vue/vuepress/引越し」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「docs/.vuepress/config.js <pre> module.exports = { head: [ ['script',{}, ` var uri = new URL(window.location.href); if (uri.host == "hoge.web.app"))...」)
 
 
行15: 行15:
 
}
 
}
 
</pre>
 
</pre>
 +
 +
hoge.web.appだったら、hoge.example.netへ

2021年4月8日 (木) 18:15時点における最新版

docs/.vuepress/config.js

module.exports = {
  head: [
    ['script',{}, `
        var uri = new URL(window.location.href);
        if (uri.host == "hoge.web.app")) {
            setTimeout("redirect()", 0);
        }
        function redirect(){
            location.href = "ttps://hoge.example.net";
        }
    `],
  ]
}

hoge.web.appだったら、hoge.example.netへ