Skip to content

Commit

Permalink
feat: add api adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
altrusl committed Dec 10, 2023
1 parent 1c5491c commit ac9340e
Show file tree
Hide file tree
Showing 26 changed files with 1,404 additions and 403 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
VITE_APP_NAME="Vue 3 base website template"
VITE_APP_DEFAULT_LOCALE="en"
VITE_API_URL="/rpc/"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Vue webapp template

<!-- For npmjs.org -->
Empty NPM package for the purpose of existence of `create-vue-webapp`
Empty NPM package for the purpose of existence of `create-vue-webapp` package.

Full documentation is available at [https://vue-faq.org/en/vue-webapp/](https://vue-faq.org/en/vue-webapp/)
3 changes: 1 addition & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@
<link rel="icon" type="image/png" sizes="48x48" href="/assets/images/favicon-32x32.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/apple-touch-icon.png" />
<title><!-- title placeholder --></title>
<!-- service-worker placeholder -->
</head>
<body>
<body class="splash">
<div id="app" />
<script type="module" src="/src/main.ts"></script>
</body>
Expand Down
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-webapp",
"type": "module",
"version": "1.0.4",
"version": "1.0.5",
"description": "A basic template for building a new Vue 3 web application using the latest technologies and best practices",
"license": "MIT",
"homepage": "https://github.com/vuesence/vue-webapp",
Expand Down Expand Up @@ -29,16 +29,17 @@
"lint:fix": "eslint . --fix"
},
"dependencies": {
"vue": "^3.3.8",
"vue": "^3.3.11",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.0.0",
"@types/node": "^20.9.0",
"@vitejs/plugin-vue": "^4.5.0",
"eslint": "^8.53.0",
"@antfu/eslint-config": "^2.4.4",
"@types/node": "^20.10.4",
"@vitejs/plugin-vue": "^4.5.2",
"eslint": "^8.55.0",
"sass": "^1.69.5",
"typescript": "^5.2.2",
"vite": "^5.0.0"
"typescript": "^5.3.3",
"vite": "^5.0.7",
"vite-plugin-html-injection": "^1.3.3"
}
}
Loading

0 comments on commit ac9340e

Please sign in to comment.