I am using tauri (1.2.5) with reactjs and I'm creating a splashscreen for my app. I've done this by creating a splashscreen.html file in the root directory (same dir as index.html) with this content:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Elect</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/splashscreen.tsx"></script>
</body>
</html>
In splashscreen.tsx is the splashscreen design and reference to a splashscreen.scss for animation. The splashscreen window is refered to in the tauri.conf.json file like this:
{
"width": 400,
"height": 200,
"decorations": false,
"url": "splashscreen.html",
"label": "splashscreen",
"center": true,
"transparent": true,
"skipTaskbar": true,
"alwaysOnTop": true,
"title": "Elect"
}
Everything works when using dev mode (yarn tauri dev
), but when I build the app, the splashscreen.html file is not included or compiled so is not found by the app when run (it seems to default to rendering index.html). I can't just copy the file into the dist dir as it includes a sass file.
Are there any solutions to this?