mirror of
https://git.ethanthesleepy.one/ethanaobrien/ew.git
synced 2025-05-13 11:37:33 -05:00
15 lines
305 B
JavaScript
15 lines
305 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
rollupOptions: {
|
|
output: {
|
|
entryFileNames: 'index.js',
|
|
assetFileNames: 'index.css',
|
|
},
|
|
},
|
|
},
|
|
})
|