Skip to content

Commit

Permalink
#1 - Add Vue-i18n and implement on login page
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristian Binau authored and Kristian Binau committed Sep 27, 2023
1 parent ad9e37a commit bb1d113
Show file tree
Hide file tree
Showing 8 changed files with 168 additions and 13 deletions.
2 changes: 1 addition & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default defineConfig({
server: {
port: PORT,
},
integrations: [sitemap(), tailwind(), vue()],
integrations: [sitemap(), tailwind(), vue({ appEntrypoint: '/src/pages/_app' })],
adapter: adapter,
vite: {
server: {
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vue": "^3.3.4"
"vue": "^3.3.4",
"vue-i18n": "^9.3.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.4.0",
Expand Down
96 changes: 95 additions & 1 deletion pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion public/serviceWorker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const API_URL = 'http://localhost:3000/api/';
const API_URL = 'http://localhost:3001/api/';
/**
* localForage is a fast and simple storage library for JavaScript.
* localForage improves the offline experience of your web app
Expand Down
Loading

0 comments on commit bb1d113

Please sign in to comment.