vite.config.ts — ui Source File
Architecture documentation for vite.config.ts, a typescript file in the ui codebase. 7 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 8f6909a2_8a04_742b_7d91_f75ce232c017["vite.config.ts"] 141ab285_8337_7936_5d09_bd65385580f9["vite"] 8f6909a2_8a04_742b_7d91_f75ce232c017 --> 141ab285_8337_7936_5d09_bd65385580f9 36032543_45cf_6eb7_a99f_236ee68c1f28["devtools-vite"] 8f6909a2_8a04_742b_7d91_f75ce232c017 --> 36032543_45cf_6eb7_a99f_236ee68c1f28 cb3c9c6b_234d_7cc4_b01b_ea1dd67a9ddf["vite"] 8f6909a2_8a04_742b_7d91_f75ce232c017 --> cb3c9c6b_234d_7cc4_b01b_ea1dd67a9ddf 6912d649_d313_365d_7732_c1113f90b9fc["plugin-react"] 8f6909a2_8a04_742b_7d91_f75ce232c017 --> 6912d649_d313_365d_7732_c1113f90b9fc 16b50be0_638a_b66a_eb3f_ece4f48c2662["vite-tsconfig-paths"] 8f6909a2_8a04_742b_7d91_f75ce232c017 --> 16b50be0_638a_b66a_eb3f_ece4f48c2662 f47b294c_7a1d_1568_a2fa_7d9cb08ba50c["vite"] 8f6909a2_8a04_742b_7d91_f75ce232c017 --> f47b294c_7a1d_1568_a2fa_7d9cb08ba50c 76d6983e_734e_5911_819d_1b5f419039fb["vite"] 8f6909a2_8a04_742b_7d91_f75ce232c017 --> 76d6983e_734e_5911_819d_1b5f419039fb style 8f6909a2_8a04_742b_7d91_f75ce232c017 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { defineConfig } from 'vite'
import { devtools } from '@tanstack/devtools-vite'
import { tanstackStart } from '@tanstack/react-start/plugin/vite'
import viteReact from '@vitejs/plugin-react'
import viteTsConfigPaths from 'vite-tsconfig-paths'
import tailwindcss from '@tailwindcss/vite'
import { nitro } from 'nitro/vite'
const config = defineConfig({
plugins: [
devtools(),
nitro(),
// this is the plugin that enables path aliases
viteTsConfigPaths({
projects: ['./tsconfig.json'],
}),
tailwindcss(),
tanstackStart(),
viteReact(),
],
})
export default config
Dependencies
- devtools-vite
- plugin-react
- vite
- vite
- vite
- vite
- vite-tsconfig-paths
Source
Frequently Asked Questions
What does vite.config.ts do?
vite.config.ts is a source file in the ui codebase, written in typescript.
What does vite.config.ts depend on?
vite.config.ts imports 7 module(s): devtools-vite, plugin-react, vite, vite, vite, vite, vite-tsconfig-paths.
Where is vite.config.ts in the architecture?
vite.config.ts is located at templates/start-app/vite.config.ts (directory: templates/start-app).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free