Skip to content

Commit 81f14c5

Browse files
committed
Move dist folder
1 parent d1f606b commit 81f14c5

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jobs:
4848
- name: Upload artifact
4949
uses: actions/upload-pages-artifact@v1
5050
with:
51-
# Upload dist repository
52-
path: './docs/.vitepress/dist'
51+
# Upload dist directory
52+
path: './dist'
5353
- name: Deploy to GitHub Pages
5454
id: deployment
5555
uses: actions/deploy-pages@v2

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.DS_Store
22
node_modules
33
/docs/.vitepress/cache
4-
/docs/.vitepress/dist
4+
/dist
55

66
# local env files
77
.env.local

docs/.vitepress/config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { defineConfigWithTheme } from 'vitepress'
22

33
export default defineConfigWithTheme({
4+
outDir: '../dist',
45
base: '/vue-examples',
56
title: 'Vue Examples',
67
lang: 'en-US',

0 commit comments

Comments
 (0)