update superpage

This commit is contained in:
2025-04-15 19:07:36 -03:00
parent 27769ba363
commit c702ca870b
24 changed files with 538 additions and 605 deletions

View File

@@ -1,14 +1,18 @@
// @ts-check
import { defineConfig } from 'astro/config';
import { defineConfig } from 'astro/config'
import react from '@astrojs/react';
import tailwindcss from '@tailwindcss/vite';
import react from '@astrojs/react'
import tailwindcss from '@tailwindcss/vite'
// https://astro.build/config
export default defineConfig({
integrations: [react()],
vite: {
plugins: [tailwindcss()]
}
});
plugins: [tailwindcss()],
},
server: {
host: '0.0.0.0',
allowedHosts: ['7aaa-187-57-7-239.ngrok-free.app'],
},
})