-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
vite.config.js
23 lines (22 loc) · 987 Bytes
/
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
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',
graficas: 'graficas/index.html',
preguntas: 'preguntas/index.html'
}
}
}
});