In my project, I am utilizing the Spark web framework for Java along with the Freemarker template engine. Here is an excerpt of my HTML code:
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap.min.css">
<!-- Custom styles for dashboard -->
<link rel="stylesheet" href="dashboard.css">
<!-- Optional theme -->
<link rel="stylesheet" href="bootstrap-theme.min.css">
However, when attempting to include these CSS files from my resources/public directory, Spark throws the following error message:
[qtp765086197-18] INFO spark.http.matching.MatcherFilter - The requested route [/bootstrap-theme.min.css.map] has not been mapped in Spark for Accept: [null]
I am uncertain if this constitutes an error since everything appears to be included properly. Is there a way to resolve or eliminate this issue?