#Config file changes do not apply

7 messages · Page 1 of 1 (latest)

next latch
#

Hey, so I am working on a tauri project and whenever I change the values in my config file, nothing applies.
i was doing it with the app (window) name and width and height of the window

glad knoll
#

You should try restarting your app

#

But Tauri should do that automatically

proud axle
#

show me a pic how you try to change it and what you want to change.

inside your tauri.conf.json > app > window you can do

{
  "label": "main", // to get your window
  "title": "myapp-window", // in windows it is your taskbar name, titlebar where your app icon is and in your main process
  "width": 1000,
  "height": 800

and in windows you have a process called WebView2 Manager to change the window title there you can use the <title>MyApp Window</title> inside your index.html
it would look like:
WebView2 Manager
WebView2: MyApp Window

next latch
#

thanks everyone, it wasnt a mis take on my part but i found the issue

#

i deleted the contents of the debug file

#

and when it regenerated them, it worked