Skip to content

Commit 77de6dc

Browse files
committed
first commit
1 parent b15b507 commit 77de6dc

26 files changed

+4236
-121
lines changed

Diff for: next.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
reactStrictMode: true,
4-
}
4+
};
55

6-
module.exports = nextConfig
6+
module.exports = nextConfig;

Diff for: package-lock.json

+204
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+9-5
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,27 @@
55
"scripts": {
66
"dev": "next dev",
77
"build": "next build",
8+
"export": "next export",
89
"start": "next start",
10+
"tauri": "tauri",
911
"lint": "next lint"
1012
},
1113
"dependencies": {
14+
"@tauri-apps/api": "^1.5.1",
15+
"next": "14.0.1",
1216
"react": "^18",
13-
"react-dom": "^18",
14-
"next": "14.0.1"
17+
"react-dom": "^18"
1518
},
1619
"devDependencies": {
17-
"typescript": "^5",
20+
"@tauri-apps/cli": "^1.5.6",
1821
"@types/node": "^20",
1922
"@types/react": "^18",
2023
"@types/react-dom": "^18",
2124
"autoprefixer": "^10.0.1",
25+
"eslint": "^8",
26+
"eslint-config-next": "14.0.1",
2227
"postcss": "^8",
2328
"tailwindcss": "^3.3.0",
24-
"eslint": "^8",
25-
"eslint-config-next": "14.0.1"
29+
"typescript": "^5"
2630
}
2731
}

Diff for: src-tauri/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
/target/

0 commit comments

Comments
 (0)