refactor(lst): refactored to be back to npm from bun

This commit is contained in:
2025-02-27 08:36:05 -06:00
parent 4c73fb0317
commit 379f7b836d
75 changed files with 15693 additions and 2705 deletions

View File

@@ -7,10 +7,6 @@ import path from "path";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss(), TanStackRouterVite({autoCodeSplitting: true})],
// build: {
// outDir: path.resolve(__dirname, "../../dist/frontend/dist"),
// emptyOutDir: true,
// },
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
@@ -18,7 +14,7 @@ export default defineConfig({
},
server: {
proxy: {
"/api": {target: `http://localhost:4000`, changeOrigin: true},
"/api": {target: `http://localhost:4400`, changeOrigin: true},
},
},
});