Open sayayinR opened 2 weeks ago
Yes I have. That’s where I copied the Yaml file from.
You also need to update your astro config to generate a static build:
export default defineConfig({
output: "static",
// adapter: vercel(),
integrations: [
tailwind({
config: {
applyBaseStyles: false,
},
}),
svelte(),
],
});
And then you will have to update the src/pages/products/[...handle].astro
page to add the getStaticPaths()
function.
Hi, I'm sure this is just a documenatation issue but I'm trying out astro-shopify and with the existing config when I run npm run build, a dist folder is not created. I can see it has an adapter for vercel. I am testing this with Github pages and the build fails because it does not find dist folder. Can you please update docs or advise what I need to do?
Thank you!