yes
mellobacon committed
Nov 24, 2022 at 15:08 UTC
2ebe7d40259f837239b8ae9a6deeee184a77ba6d
2 files changed
+4
-6
src-tauri/tauri.conf.json
+2
-2
@@ -1,10 +1,10 @@
1
{
2
- "$schema": "../node_modules/@tauri-apps/cli/schema.json",
2
"build": {
3
"beforeBuildCommand": "yarn build",
4
"beforeDevCommand": "yarn dev",
5
"devPath": "http://localhost:8080",
7
- "distDir": "../public"
6
+ "distDir": "../public",
7
+ "withGlobalTauri": false
8
},
9
"package": {
10
"productName": "nucleus",
src/main.ts
+2
-4
@@ -1,10 +1,8 @@
1
+import "./global.css";
2
import App from './App.svelte';
3
4
const app = new App({
4
- target: document.body,
5
- props: {
6
- name: 'world'
7
- }
5
+ target: document.body
6
});
7
8
export default app;
\ No newline at end of file