Skip to content

Commit 8a49ba1

Browse files
committed
production-ready-windows-app
1 parent 6c81c8c commit 8a49ba1

65 files changed

Lines changed: 421 additions & 32 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 66 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,76 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
1+
# =========================
2+
# Node / Next.js
3+
# =========================
4+
node_modules/
5+
.next/
6+
out/
7+
dist/
8+
build/
9+
.turbo/
210

3-
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.*
7-
.yarn/*
8-
!.yarn/patches
9-
!.yarn/plugins
10-
!.yarn/releases
11-
!.yarn/versions
11+
# Logs
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
pnpm-debug.log*
1216

13-
# testing
14-
/coverage
17+
# Environment variables
18+
.env
19+
.env.local
20+
.env.development.local
21+
.env.test.local
22+
.env.production.local
23+
24+
# =========================
25+
# TypeScript
26+
# =========================
27+
*.tsbuildinfo
1528

16-
# next.js
17-
/.next/
18-
/out/
29+
# =========================
30+
# Tauri / Rust
31+
# =========================
32+
src-tauri/target/
33+
src-tauri/Cargo.lock
1934

20-
# production
21-
/build
35+
# Rust
36+
target/
37+
**/*.rs.bk
2238

23-
# misc
39+
# =========================
40+
# OS files
41+
# =========================
2442
.DS_Store
25-
*.pem
43+
Thumbs.db
44+
desktop.ini
2645

27-
# debug
28-
npm-debug.log*
29-
yarn-debug.log*
30-
yarn-error.log*
31-
.pnpm-debug.log*
46+
# =========================
47+
# IDE / Editor
48+
# =========================
49+
.vscode/
50+
.idea/
51+
*.suo
52+
*.ntvs*
53+
*.njsproj
54+
*.sln
3255

33-
# env files (can opt-in for committing if needed)
34-
.env*
56+
# =========================
57+
# Build Outputs
58+
# =========================
59+
*.exe
60+
*.msi
61+
*.deb
62+
*.rpm
63+
*.AppImage
64+
*.dmg
3565

36-
# vercel
37-
.vercel
66+
# =========================
67+
# Coverage
68+
# =========================
69+
coverage/
3870

39-
# typescript
40-
*.tsbuildinfo
41-
next-env.d.ts
71+
# =========================
72+
# Temporary files
73+
# =========================
74+
*.log
75+
*.tmp
76+
*.swp

app-icon.png

19 KB
Loading

next-env.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
import "./.next/types/routes.d.ts";
4+
5+
// NOTE: This file should not be edited
6+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { NextConfig } from "next";
22

33
const nextConfig: NextConfig = {
4-
/* config options here */
4+
output: "export",
55
};
66

77
export default nextConfig;

0 commit comments

Comments
 (0)