vite.config.js — vite Source File
Architecture documentation for vite.config.js, a javascript file in the vite codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 9117c9db_4d93_3c15_978b_439cd8c73dbb["vite.config.js"] 51e96894_3556_ed5c_1ede_97d449867adf["node:path"] 9117c9db_4d93_3c15_978b_439cd8c73dbb --> 51e96894_3556_ed5c_1ede_97d449867adf 54c37fea_4fe7_2693_71cb_1276b77f55f9["vite"] 9117c9db_4d93_3c15_978b_439cd8c73dbb --> 54c37fea_4fe7_2693_71cb_1276b77f55f9 style 9117c9db_4d93_3c15_978b_439cd8c73dbb fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import path from 'node:path'
import { defineConfig } from 'vite'
const packageFPath = path.resolve(import.meta.dirname, 'test-package-f')
export default defineConfig({
resolve: {
alias: {
__F_ABSOLUTE_PACKAGE_PATH__: packageFPath,
},
},
optimizeDeps: {
include: [
'@vitejs/test-package-a',
'@vitejs/test-package-b',
'@vitejs/test-package-c',
'@vitejs/test-package-c/side',
'@vitejs/test-package-d > @vitejs/test-package-d-nested',
'@vitejs/test-package-e > @vitejs/test-package-e-included',
'@vitejs/test-package-f',
],
exclude: ['@vitejs/test-package-d', '@vitejs/test-package-e-excluded'],
},
})
Dependencies
- node:path
- vite
Source
Frequently Asked Questions
What does vite.config.js do?
vite.config.js is a source file in the vite codebase, written in javascript.
What does vite.config.js depend on?
vite.config.js imports 2 module(s): node:path, vite.
Where is vite.config.js in the architecture?
vite.config.js is located at playground/nested-deps/vite.config.js (directory: playground/nested-deps).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free