Skip to content

Commit 1da24d4

Browse files
committed
fix conflicts
2 parents f3a4803 + ca47e6e commit 1da24d4

File tree

13 files changed

+501
-151
lines changed

13 files changed

+501
-151
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ jobs:
3434
- name: Install Node Dependencies
3535
run: npm ci
3636

37-
- name: Create SQLite Database
38-
run: touch database/database.sqlite
39-
4037
- name: Install Dependencies
4138
run: composer install --no-interaction --prefer-dist --optimize-autoloader
4239

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/.phpunit.cache
2+
/bootstrap/ssr
23
/node_modules
34
/public/build
45
/public/hot

components.json

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
{
2-
"$schema": "https://shadcn-vue.com/schema.json",
3-
"style": "default",
4-
"typescript": true,
5-
"tsConfigPath": "./tsconfig.json",
6-
"tailwind": {
7-
"config": "tailwind.config.js",
8-
"css": "resources/css/app.css",
9-
"baseColor": "neutral",
10-
"cssVariables": true,
11-
"prefix": ""
12-
},
13-
"framework": "laravel",
14-
"aliases": {
15-
"components": "resources/js/Components",
16-
"utils": "@/lib/utils",
17-
"ui": "resources/js/Components/ui",
18-
"lib": "@/lib",
19-
"hooks": "@/hooks"
20-
}
2+
"$schema": "https://shadcn-vue.com/schema.json",
3+
"style": "default",
4+
"typescript": true,
5+
"tailwind": {
6+
"config": "tailwind.config.js",
7+
"css": "resources/css/app.css",
8+
"baseColor": "neutral",
9+
"cssVariables": true,
10+
"prefix": ""
11+
},
12+
"aliases": {
13+
"components": "@/components",
14+
"composables": "@/composables",
15+
"utils": "@/lib/utils",
16+
"ui": "@/components/ui",
17+
"lib": "@/lib"
18+
},
19+
"iconLibrary": "lucide"
2120
}

0 commit comments

Comments
 (0)