Skip to content

Commit

Permalink
feat: test build
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-mendez committed Jul 19, 2024
1 parent 4d66484 commit 94f76a7
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 67 deletions.
51 changes: 0 additions & 51 deletions .github/workflows/deploy.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

Expand Down
File renamed without changes.
File renamed without changes.
14 changes: 0 additions & 14 deletions dist/index.html

This file was deleted.

3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web Portfolio</title>
<script type="module" crossorigin src="/assets/index-eBw_4pxw.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-fNCE5DMw.css">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
16 changes: 16 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
Expand Down
5 changes: 4 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'

// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: 'frank-mendez.github.io'
build: {
outDir: path.resolve(__dirname, '')
}
})
File renamed without changes

0 comments on commit 94f76a7

Please sign in to comment.