diff --git a/.gitignore b/.gitignore index 9e89aeb..aca12b5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,5 @@ HELP.md target/ -.mvn/wrapper/maven-wrapper.jar -!**/src/main/**/target/ -!**/src/test/**/target/ .DS_Store ### STS ### diff --git a/src/main/webapp/README.md b/src/main/webapp/README.md index 0807be7..382f7d6 100644 --- a/src/main/webapp/README.md +++ b/src/main/webapp/README.md @@ -9,7 +9,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended Browser Setup - Chromium-based browsers (Chrome, Edge, Brave, etc.): - - [Vue.js devtools](https://chromewebstore.google.com/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd) + - [Vue.js devtools](https://chromewebstore.google.com/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd) - [Turn on Custom Object Formatter in Chrome DevTools](http://bit.ly/object-formatters) - Firefox: - [Vue.js devtools](https://addons.mozilla.org/en-US/firefox/addon/vue-js-devtools/) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 9e5fc8f..9d30802 100644 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -1,9 +1,9 @@ - + - - - + + + Vite App diff --git a/src/main/webapp/package.json b/src/main/webapp/package.json index 9c88884..e0bf04b 100644 --- a/src/main/webapp/package.json +++ b/src/main/webapp/package.json @@ -13,7 +13,7 @@ "build-only": "vite build", "type-check": "vue-tsc --build", "lint": "eslint . --fix --cache", - "format": "prettier --write --experimental-cli src/" + "format": "prettier --write --experimental-cli ." }, "dependencies": { "axios": "^1.13.2", diff --git a/src/main/webapp/vite.config.ts b/src/main/webapp/vite.config.ts index 4217010..036ca4d 100644 --- a/src/main/webapp/vite.config.ts +++ b/src/main/webapp/vite.config.ts @@ -6,13 +6,10 @@ import vueDevTools from 'vite-plugin-vue-devtools' // https://vite.dev/config/ export default defineConfig({ - plugins: [ - vue(), - vueDevTools(), - ], + plugins: [vue(), vueDevTools()], resolve: { alias: { - '@': fileURLToPath(new URL('./src', import.meta.url)) + '@': fileURLToPath(new URL('./src', import.meta.url)), }, }, })