chore(#197): ran prettier on packages/bruno-tauri

This commit is contained in:
Anoop M D 2023-09-22 00:44:28 +05:30
parent 88c16fa388
commit 9a81793151

View File

@ -13,11 +13,11 @@ const devServer = async (dir, port) => {
server.listen(port || 8000, () => { server.listen(port || 8000, () => {
// Todo: Need to listen to tauri close event and close the server // Todo: Need to listen to tauri close event and close the server
// app.on('before-quit', () => server.close()) // app.on('before-quit', () => server.close())
}) });
} };
const run = async() => { const run = async () => {
await devServer("../../renderer", 8000); await devServer('../../renderer', 8000);
}; };
run(); run();