Files
pokemon/astro.config.mjs

35 lines
765 B
JavaScript
Raw Permalink Normal View History

import { defineConfig } from "astro/config";
import node from "@astrojs/node";
import clerk from "@clerk/astro";
import { dark } from '@clerk/themes'
2026-02-07 13:36:51 -05:00
export default defineConfig({
integrations: [
clerk({
appearance: {
theme: dark,
},
}),
],
server: {
allowedHosts: true,
},
2026-03-02 09:30:46 -05:00
adapter: node({ mode: "standalone", checkOrigin: false }),
output: "server",
2026-03-02 09:30:46 -05:00
security: {
checkOrigin: false
},
vite: {
css: {
preprocessorOptions: {
scss: {
// Silences deprecation warnings from dependencies
quietDeps: true,
// Specifically silence color function warnings
silenceDeprecations: ['color-functions', 'import','global-builtin'],
},
},
},
},
});