orimização e testes de build hibrido

This commit is contained in:
Luiz Silva 2025-07-18 13:36:46 -03:00
parent 17aee620b3
commit 40dca15bff
53 changed files with 2944 additions and 697 deletions

View file

@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import {umaFuncao,umaVariavel} from 'p-comuns'
console.log('Dentro do vitConfig', umaVariavel, umaFuncao())
export default defineConfig({
plugins: [react()],server:{ watch: {
ignored: ['**/node_modules/**'] // evita watchers pesados
}}
})