Meters fix to show data in table component

This commit is contained in:
2025-12-20 12:21:11 -06:00
parent c3655f5222
commit 9ece6ff127
3 changed files with 340 additions and 280 deletions

View File

@@ -1,15 +1,17 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from "@tailwindcss/vite"
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(),tailwindcss()],
plugins: [react(), tailwindcss()],
server: {
host: '0.0.0.0',
allowedHosts: [
"localhost",
"127.0.0.1",
"reyna-compressive-shaunna.ngrok-free.dev",
],
port: 5173,
},
})
});