1
1
mirror of https://github.com/neosubhamoy/neodlp.git synced 2026-02-04 15:22:23 +05:30

refactor: replaced es-toolkit with tanstack-pacer

This commit is contained in:
2026-01-16 20:47:12 +05:30
Verified
parent 1eb23eb035
commit 49f5203377
8 changed files with 1061 additions and 566 deletions

View File

@@ -2,13 +2,18 @@ import path from "path"
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
import { devtools } from "@tanstack/devtools-vite";
// @ts-expect-error process is a nodejs global
const host = process.env.TAURI_DEV_HOST;
// https://vitejs.dev/config/
export default defineConfig(async () => ({
plugins: [react(), tailwindcss()],
plugins: [
devtools(),
react(),
tailwindcss()
],
build: {
chunkSizeWarningLimit: 1024, // 1MB
},