chore: add web .gitignore, remove dist from tracking

This commit is contained in:
Martin 2026-03-20 01:06:46 +01:00
parent 8e7fe78b8b
commit 3c7db7092c
13 changed files with 4 additions and 1855 deletions

4
src/AccountTracking.Web/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
node_modules/
dist/
openapi.json
vite.config.js

View File

@ -1 +0,0 @@
import{_ as e,c,o}from"./index-BQDVIWAB.js";const r={};function a(n,s){return o(),c("div",null,"Dashboard")}const _=e(r,[["render",a]]);export{_ as default};

View File

@ -1 +0,0 @@
import{_ as e,c,o as n}from"./index-BQDVIWAB.js";const o={};function r(t,s){return n(),c("div",null,"Login")}const a=e(o,[["render",r]]);export{a as default};

View File

@ -1 +0,0 @@
import{_ as c,c as e,o as n}from"./index-BQDVIWAB.js";const o={};function r(s,t){return n(),e("div",null,"Transactions")}const _=c(o,[["render",r]]);export{_ as default};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,14 +0,0 @@
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Finance Tracker</title>
<script type="module" crossorigin src="/assets/index-BQDVIWAB.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-D22zsSwR.css">
</head>
<body>
<div id="app"></div>
</body>
</html>

View File

@ -1,17 +0,0 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import vuetify from 'vite-plugin-vuetify';
export default defineConfig({
plugins: [
vue(),
vuetify({ autoImport: true }),
],
server: {
proxy: {
'/api': {
target: 'http://localhost:5000',
changeOrigin: true,
},
},
},
});