facebook twitter hatena line email

Javascript/vue/vuepress/引越し

提供: 初心者エンジニアの簡易メモ
2021年4月8日 (木) 18:15時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「docs/.vuepress/config.js <pre> module.exports = { head: [ ['script',{}, ` var uri = new URL(window.location.href); if (uri.host == "hoge.web.app"))...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

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";
        }
    `],
  ]
}