Skip to content

Commit

Permalink
tauri working, but window resize flicker. set backgroun color?
Browse files Browse the repository at this point in the history
  • Loading branch information
Redstonerayy committed Jan 19, 2023
1 parent 3b5857b commit e2a595f
Show file tree
Hide file tree
Showing 29 changed files with 3,296 additions and 60 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -3,4 +3,4 @@ make-docker:
docker build -t devio .

start-docker:
docker run --name local-devio -d -p 8080:80 devio
docker run --name local-devio -d -p 8080:80 devio
2 changes: 1 addition & 1 deletion src/index.html → index.html
Expand Up @@ -12,7 +12,7 @@
<div id="main">
</div>

<script type="module" src="ts/index.ts"></script>
<script type="module" src="src/ts/index.ts"></script>
</body>

</html>
40 changes: 20 additions & 20 deletions package.json
@@ -1,22 +1,22 @@
{
"name": "devio",
"version": "1.0.0",
"repository": "https://github.com/Redstonerayy/devio",
"author": "Redstonerayy <antonpaulr@protonmail.com>",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "yarn run vite serve",
"build": "yarn run vite build && mv dist/src/index.html dist/index.html && rm -rf dist/src",
"clean": "rm -rf ./dist"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"@volar-plugins/vetur": "^0.1.0",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vue-tsc": "^1.0.16"
},
"dependencies": {
"vue": "^3.2.45"
}
"name": "devio",
"version": "1.0.0",
"repository": "https://github.com/Redstonerayy/devio",
"author": "Redstonerayy <antonpaulr@protonmail.com>",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "yarn run vite serve",
"build": "yarn run vite build",
"clean": "rm -rf ./dist"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"@volar-plugins/vetur": "^0.1.0",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vue-tsc": "^1.0.16"
},
"dependencies": {
"vue": "^3.2.45"
}
}
3 changes: 3 additions & 0 deletions src-tauri/.gitignore
@@ -0,0 +1,3 @@
# Generated by Cargo
# will have compiled files and executables
/target/

0 comments on commit e2a595f

Please sign in to comment.