mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
- Remove obsolete fullscreen redirect test (route deleted in Task 3) - Update dropzone test strings to match new i18n values - Fix categories count in i18n locale test (12 -> 24) - Add chart-maker to no-dropzone exempt list in tool-registry test - Auto-fix import ordering (Biome) in popular tools route and landing config
24 lines
509 B
JavaScript
24 lines
509 B
JavaScript
import sitemap from "@astrojs/sitemap";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import { defineConfig } from "astro/config";
|
|
|
|
export default defineConfig({
|
|
site: "https://snapotter.com",
|
|
output: "static",
|
|
integrations: [
|
|
sitemap({
|
|
filter: (page) => !page.includes("/404"),
|
|
}),
|
|
],
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
resolve: {
|
|
extensions: [".ts", ".tsx", ".js", ".jsx"],
|
|
conditions: ["import", "module"],
|
|
},
|
|
},
|
|
build: {
|
|
format: "directory",
|
|
},
|
|
});
|