-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathvite.config.js
25 lines (24 loc) · 1.2 KB
/
vite.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { defineConfig } from 'vite';
export default defineConfig({
build: {
outDir: 'build',
rollupOptions: {
input: {
main: 'index.html',
noticias: 'noticias/index.html',
'nueva-clasificacion-colores-horas': 'noticias/nueva-clasificacion-colores-horas/index.html',
'nueva-direccion-web': 'noticias/nueva-direccion-web/index.html',
'politica-de-privacidad': 'politica-de-privacidad/index.html',
'newsletter-precio-luz-manana': 'noticias/newsletter-precio-luz-manana/index.html',
'subastas-precio-luz-manana': 'noticias/subastas-precio-luz-manana/index.html',
'precio-luz-manana': 'precio-luz-manana/index.html',
'compensacion-del-gas': 'compensacion-del-gas/index.html',
'descubre-companias-mejores-precios-luz-2024': 'noticias/descubre-companias-mejores-precios-luz-2024/index.html',
'descubre-mejores-tarifas-luz-2025': 'noticias/descubre-mejores-tarifas-luz-2025/index.html',
'diez-inluencers-ecologicos-para-seguir-redes-sociales': 'noticias/diez-inluencers-ecologicos-para-seguir-redes-sociales/index.html',
graficas: 'graficas/index.html',
preguntas: 'preguntas/index.html'
}
}
}
});