Philipp Mayer
05/16/2020, 10:57 AM├── application.conf
├── css
│ ├── example.css
│ └── main.css
├── js
│ └── main.js
├── logback.xml
└── templates
└── index.html
I want to reference the main.css file and the main.js file. I thought I do it like that:
<link th:href="@{../css/main.css}" rel="stylesheet"/>
but the browser prompts me with
Failed to load resource: the server responded with a status of 404 (Not Found)
What am I missing here? Thanks ahead!