Skip to content

Commit

Permalink
fix: deploy bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliezir committed Oct 2, 2023
1 parent 1738bbb commit c02ac76
Show file tree
Hide file tree
Showing 9 changed files with 5,401 additions and 1,143 deletions.
4,232 changes: 4,232 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix --ignore-path .gitignore"
"lint": "eslint . --fix --ignore-path .gitignore",
"deploy": "npm run build && gh-pages -d dist"
},
"dependencies": {
"@mdi/font": "7.0.96",
Expand All @@ -21,6 +22,7 @@
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.37.0",
"eslint-plugin-vue": "^9.3.0",
"gh-pages": "^6.0.0",
"sass": "^1.60.0",
"unplugin-fonts": "^1.0.3",
"vite": "^4.2.0",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/views/DocsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
</template>

<script setup>
import DocsIndex from "../components/docs/indexDocs.vue"
import RSA from "../components/docs/CriptografiaRSA.vue"
import Key from "../components/docs/KeyRsa.vue"
import DocsIndex from "../components/docsComponents/indexDocs.vue"
import RSA from "../components/docsComponents/CriptografiaRSA.vue"
import Key from "../components/docsComponents/KeyRsa.vue"
import { ref } from "vue";
const page = ref("index");
Expand Down
2,302 changes: 1,163 additions & 1,139 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit c02ac76

Please sign in to comment.