19
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WebStormでDocumentRootのディレクトリを指定するやり方

Posted at

前提

  • 下記のような構成でプロジェクトを構成している
  • ローカルのWebStormプロジェクトディレクトリがドキュメントルートより上の階層である
  • IDEがルートからの相対パス(ex. /css/style.css )をうまく解釈してくれない

プロジェクトの階層

- /web/trunk         # 開発環境のルートディレクトリ
    - /.idea         # WebStormプロジェクト
    - /app           # Railsなどのアプリケーション領域
    - /frontend_src  # フロントエンドのアプリケーション領域
    - /public        # ドキュメントルート
        - /css       
            - style.css
        - index.html 

つまりHTMLやCSSのパスを/web/trunt/public/をドキュメントルートとして解釈してほしい。

WebStormの設定

Preference > Project Settings > Derectories の任意のディレクトリを選択し、Resource Rootに設定すると解決しました。

webstorm_cap.png

19
21
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?