cambios adicionales
This commit is contained in:
@@ -2,15 +2,23 @@ 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),
|
||||
@@ -19,4 +27,4 @@ export default defineConfig(({ mode }) => ({
|
||||
"@": path.resolve(__dirname, "./src"),
|
||||
},
|
||||
},
|
||||
}));
|
||||
}));
|
||||
Reference in New Issue
Block a user