#CSS paths are not correct

1 messages · Page 1 of 1 (latest)

spark ginkgo
ionic vector
#

Hi @spark ginkgo 👋

#

Could you share what your astro.config file looks like?

spark ginkgo
#

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`,
});
ionic vector
#

Thanks! I think the issue is your site setting. Could you update that to be just:

site: 'https://rayfield-docs.vercel.app/'
spark ginkgo
#

Oh I see, thank you so much!