-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcd loreforge
More file actions
32 lines (28 loc) · 714 Bytes
/
cd loreforge
File metadata and controls
32 lines (28 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# clone project (atau buat baru)
mkdir loreforge && cd loreforge
# buat React project (pakai Vite)
npm create vite@latest . -- --template react
# install deps
npm install ethers
# install TailwindCSS
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
# konfigurasi Tailwind (tailwind.config.js)
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [],
};
@tailwind base;
@tailwind components;
@tailwind utilities;
npm run dev
git init
git add .
git commit -m "Initial LoreForge website"
git branch -M main
git remote add origin https://github.com/USERNAME/loreforge.git
git push -u origin main
https://loreforge.vercel.app