20 lines
381 B
JavaScript
20 lines
381 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import react from "@astrojs/react";
|
|
import netlify from "@astrojs/netlify";
|
|
|
|
import partytown from "@astrojs/partytown";
|
|
|
|
export default defineConfig({
|
|
integrations: [
|
|
react(),
|
|
partytown(
|
|
{
|
|
config: {
|
|
forward: ["dataLayer.push"],
|
|
},
|
|
}
|
|
)],
|
|
|
|
output: "server",
|
|
adapter: netlify()
|
|
}); |