Skip to content

Commit 862ec07

Browse files
committed
chore: file structure
1 parent 94014a5 commit 862ec07

32 files changed

+4
-4
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/layouts/article.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const core = useCoreStore()
2020
</article>
2121

2222
<the-footer
23-
:repository="'https://github.com/wilfredinni/python-cheatsheet/blob/master'"
23+
:repository="'https://github.com/wilfredinni/python-cheatsheet/blob/master/docs'"
2424
/>
2525
</div>
2626

src/layouts/default.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const rootRepositoryRoutes = ['contributing', 'changelog']
4747
v-if="$route.name !== 'index'"
4848
:repository="
4949
!rootRepositoryRoutes.includes($route.name as string)
50-
? 'https://github.com/wilfredinni/python-cheatsheet/blob/master'
50+
? 'https://github.com/wilfredinni/python-cheatsheet/blob/master/docs'
5151
: 'https://github.com/wilfredinni/python-cheatsheet/blob/master/src/pages'
5252
"
5353
/>

vite.config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ export default defineConfig(({ mode }) => {
3333
extensions: ['vue', 'md'],
3434
dirs: [
3535
{ dir: 'src/pages', baseRoute: '' },
36-
{ dir: 'cheatsheet', baseRoute: 'cheatsheet' },
37-
{ dir: 'blog', baseRoute: 'blog' },
36+
{ dir: 'docs/cheatsheet', baseRoute: 'cheatsheet' },
37+
{ dir: 'docs/blog', baseRoute: 'blog' },
3838
],
3939
}),
4040

0 commit comments

Comments
 (0)