我们说我有以下项目结构:
webapp
- app/
- index.html
- main/
- some.html
- other.js
- img/
- img.svg
- lib/
- lib.js
我在IntelliJ中将app
文件夹标记为源根目录。这意味着从index.html
到lib/lib.js
和main/other.js
的引用将很好地解决。但是,img/img.svg
中对main/some.html
的引用无法解决,因为IntelliJ认为它是相对路径,并且只会查看main/img/img.svg
。
如何告诉IntelliJ源根目录下文件中的路径应该相对于根而不是相对于子文件夹进行解析?