feat: implement box management module with API services, UI components, and dependency updates

This commit is contained in:
2026-07-22 13:00:35 +07:00
parent ded6f0eb0a
commit 5de7476d85
23 changed files with 3586 additions and 2806 deletions

View File

@@ -4,12 +4,14 @@ import { devtools } from '@tanstack/devtools-vite';
import { tanstackStart } from '@tanstack/react-start/plugin/vite';
import viteReact from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import viteTsConfigPaths from 'vite-tsconfig-paths';
const config = defineConfig({
// server: {
// host: true,
// },
resolve: {
tsconfigPaths: true,
},
plugins: [
paraglideVitePlugin({
project: './project.inlang',
@@ -19,10 +21,6 @@ const config = defineConfig({
strategy: ['cookie', 'baseLocale'],
}),
devtools(),
// this is the plugin that enables path aliases
viteTsConfigPaths({
projects: ['./tsconfig.json'],
}),
tailwindcss(),
tanstackStart(),
viteReact(),