リモートサーバーなんだけどbrowser-syncでCSSをstream更新したい
1161 ワード
動機
ローカルでWordPressなどの環境を作るのが面倒なので、サーバーはリモートのサーバーを使いたい。
CSS(SCSS)の編集はローカルでgulpを使用して行うが、変更内容はブラウザをリロードすることなくstreamで反映して欲しい。
実装
大事な部分だけ。
CSSの更新をstream反映するコードのサンプルはよそにいっぱいあるので省略。
Basic認証とかかかっていてもこれで大丈夫。
browserSync({
proxy: 'http://your.external.server',
serveStatic: [{
route: '/wp-content/themes/mytheme/assets/css',
dir: 'assets/css'
}],
})
Author And Source
この問題について(リモートサーバーなんだけどbrowser-syncでCSSをstream更新したい), 我々は、より多くの情報をここで見つけました https://qiita.com/heppokoact/items/2460422f502c0d580886著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .