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