#CSS paths are not correct
1 messages · Page 1 of 1 (latest)
Yes!
This is my astro.config.mjs:
import { defineConfig } from "astro/config";
import preact from "@astrojs/preact";
import react from "@astrojs/react";
// https://astro.build/config
export default defineConfig({
integrations: [
// Enable Preact to support Preact JSX components.
preact(),
// Enable React for the Algolia search component.
react(),
],
site: `https://rayfield-docs.vercel.app/en/introduction`,
});
Thanks! I think the issue is your site setting. Could you update that to be just:
site: 'https://rayfield-docs.vercel.app/'
Oh I see, thank you so much!