30 lines
884 B
TypeScript
30 lines
884 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react-swc";
|
|
import path from "path";
|
|
import { componentTagger } from "lovable-tagger";
|
|
import basicSsl from '@vitejs/plugin-basic-ssl'; // <-- Importa el plugin
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(({ mode }) => ({
|
|
server: {
|
|
host: "::",
|
|
port: 8080,
|
|
// Ya no necesitas 'https: true' directamente aquí, el plugin lo gestiona
|
|
// Si tienes certificados personalizados, usarías:
|
|
// https: {
|
|
// key: path.resolve(__dirname, './certs/localhost-key.pem'),
|
|
// cert: path.resolve(__dirname, './certs/localhost.pem'),
|
|
// },
|
|
},
|
|
plugins: [
|
|
react(),
|
|
basicSsl(), // <-- Añade el plugin aquí
|
|
mode === 'development' &&
|
|
componentTagger(),
|
|
].filter(Boolean),
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
})); |