Mantas Varnagiris
06/30/2024, 9:36 AM<http://localhost:8080/>
and <http://localhost:8080/path1>
, but fails with <http://localhost:8080/path1/path2>
. More details in 🧵Mantas Varnagiris
06/30/2024, 9:37 AM<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KotlinProject</title>
<link type="text/css" rel="stylesheet" href="styles.css">
<script type="application/javascript" src="composeApp.js"></script>
</head>
<body>
</body>
</html>
Mantas Varnagiris
06/30/2024, 9:37 AMconfig.devServer = {
...config.devServer,
historyApiFallback: true,
};
Mantas Varnagiris
06/30/2024, 9:38 AM<http://localhost:8080/path1/path2>
I get this error. index.html does load, but wasm app failsMantas Varnagiris
06/30/2024, 9:40 AMRobert Jaros
06/30/2024, 11:43 AM<base href="/">
to your index.html
<head></head>
section.Mantas Varnagiris
06/30/2024, 11:57 AM