- Add clickable favorites counter with expandable panel - Render saved recipes list with remove button - Remove duplicate 'Another one' button (Generate already covers it) - Sync favorite button state when removing from panel
19 lines
393 B
JavaScript
19 lines
393 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import sitemap from "@astrojs/sitemap";
|
|
|
|
export default defineConfig({
|
|
site: "https://randify.pro",
|
|
integrations: [sitemap()],
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
i18n: {
|
|
defaultLocale: "en",
|
|
locales: ["en", "ru"],
|
|
routing: {
|
|
prefixDefaultLocale: false,
|
|
},
|
|
},
|
|
});
|