I'm a migrating user from Eclipse to IntelliJ.
Most of my projects contain a resource folder in the root of the project, which now in this case is a module:
The fonts folder in the above directory is used by the code to load in fonts for use by the rendering. The problem is that in IntelliJ, the compilation target is the project folder itself, so the fonts aren't detected. You can get past this by manually editing the run configuration so that the working directory is in the module root.
My question is, can I somehow change IntelliJ to have this behavior by default for every project instead of having to manually do it every time? As in, by default, the target working directory for programs is always the root folder of the module the class is from.
Thanks in advance!