Skip to content

Welcome to viteconfig.js

Congrats on setting up a new Starlight project!

Next steps

Default config for jsx

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})

Default config for tsx

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})