Skip to content

Commit

Permalink
migrate to solid-js and vite
Browse files Browse the repository at this point in the history
  • Loading branch information
Greegko committed Jul 28, 2024
1 parent 2d1c866 commit e966ce4
Show file tree
Hide file tree
Showing 15 changed files with 2,701 additions and 4,682 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/web-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ jobs:
server: greegko.com
username: u584298536
password: ${{ secrets.HOSTINGER_FTP_PASSWORD }}
local-dir: ./public/
local-dir: ./dist/
server-dir: ./compress-clipboard-image/
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
node_modules/

public/
!public/index.html
dist/

.DS_Store
12 changes: 0 additions & 12 deletions config/webpack-dev.config.js

This file was deleted.

40 changes: 0 additions & 40 deletions config/webpack.config.js

This file was deleted.

19 changes: 19 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clipboard Image Compresser</title>
<meta name="description" content="Compress, optimalize, cut and resize your image from clipboard" />
<meta
name="keywords"
content="compress image, optimalize image, cut image, resize image, clipboard image manipulation, image editor lightweight, image editor webapp lightwheight"
/>
</head>

<body>
<div id="root"></div>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit e966ce4

Please sign in to comment.