feat: linting

This commit is contained in:
2025-03-18 19:02:50 -04:00
parent d8de02f789
commit 267d293927
33 changed files with 621 additions and 560 deletions

View File

@ -1,23 +1,20 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import tailwindcss from '@tailwindcss/vite'
import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
plugins: [
tailwindcss(),
sveltekit()
],
plugins: [tailwindcss(), sveltekit()],
server: {
proxy: {
'/grpc': {
target: 'http://localhost:8080',
changeOrigin: true,
changeOrigin: true
},
'/file': {
target: 'http://localhost:8080',
changeOrigin: true,
},
changeOrigin: true
}
},
host: '0.0.0.0',
host: '0.0.0.0'
}
});