vite.config-url-base.js — vite Source File
Architecture documentation for vite.config-url-base.js, a javascript file in the vite codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 4782bfc2_8455_cf1e_156b_a4ad6e0e7aea["vite.config-url-base.js"] f86de0e1_d1c4_a5fa_5256_854f3d35619b["vite.config.js"] 4782bfc2_8455_cf1e_156b_a4ad6e0e7aea --> f86de0e1_d1c4_a5fa_5256_854f3d35619b 54c37fea_4fe7_2693_71cb_1276b77f55f9["vite"] 4782bfc2_8455_cf1e_156b_a4ad6e0e7aea --> 54c37fea_4fe7_2693_71cb_1276b77f55f9 style 4782bfc2_8455_cf1e_156b_a4ad6e0e7aea fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { defineConfig } from 'vite'
import baseConfig from './vite.config.js'
/** see `ports` variable in test-utils.ts */
const port = 9525
export default defineConfig({
...baseConfig,
base: `http://localhost:${port}/`,
server: {
port,
strictPort: true,
},
build: {
...baseConfig.build,
outDir: 'dist/url-base',
watch: null,
minify: false,
assetsInlineLimit: 0,
rollupOptions: {
output: {
entryFileNames: 'entries/[name].js',
chunkFileNames: 'chunks/[name]-[hash].js',
assetFileNames: 'other-assets/[name]-[hash][extname]',
},
},
},
preview: {
port,
strictPort: true,
},
cacheDir: 'node_modules/.vite-url-base',
})
Domain
Dependencies
- vite
- vite.config.js
Source
Frequently Asked Questions
What does vite.config-url-base.js do?
vite.config-url-base.js is a source file in the vite codebase, written in javascript. It belongs to the ViteCore domain.
What does vite.config-url-base.js depend on?
vite.config-url-base.js imports 2 module(s): vite, vite.config.js.
Where is vite.config-url-base.js in the architecture?
vite.config-url-base.js is located at playground/assets/vite.config-url-base.js (domain: ViteCore, directory: playground/assets).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free