2025-11-12 12:39:09 -03:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [tailwindcss()],
|
2025-11-12 15:11:52 -03:00
|
|
|
build: {
|
|
|
|
|
rollupOptions: {
|
|
|
|
|
input: {
|
|
|
|
|
app: './public/index.html',
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-11-12 15:12:39 -03:00
|
|
|
outDir: 'dist'
|
2025-11-12 15:11:52 -03:00
|
|
|
}
|
2025-11-12 12:39:09 -03:00
|
|
|
})
|