Skip to content

Commit de628b0

Browse files
committed
move from ./app to ./src
1 parent 784c501 commit de628b0

File tree

213 files changed

+10
-6
lines changed

Some content is hidden

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

213 files changed

+10
-6
lines changed

app.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ import contentCollections from '@content-collections/vite'
44
import tsConfigPaths from 'vite-tsconfig-paths'
55

66
export default defineConfig({
7+
tsr: {
8+
appDirectory: 'src',
9+
},
710
server: {
811
preset: 'netlify',
912
},

content-collections.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { extractFrontMatter } from '~/utils/documents.server'
33

44
const posts = defineCollection({
55
name: 'posts',
6-
directory: './app/blog',
6+
directory: './src/blog',
77
include: '*.md',
88
schema: (z) => ({
99
title: z.string(),

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dev:backend": "convex dev --tail-logs",
1313
"build": "vinxi build",
1414
"start": "vinxi start",
15-
"lint": "prettier --check '**/*' --ignore-unknown && eslint --ext .ts,.tsx ./app",
15+
"lint": "prettier --check '**/*' --ignore-unknown && eslint --ext .ts,.tsx ./src",
1616
"format": "prettier --write '**/*' --ignore-unknown",
1717
"linkAll": "node scripts/link.js"
1818
},
File renamed without changes.

0 commit comments

Comments
 (0)