mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
50 lines
1.8 KiB
JavaScript
50 lines
1.8 KiB
JavaScript
import { defineConfig } from 'astro/config'
|
|
import vue from '@astrojs/vue'
|
|
import tailwind from '@astrojs/tailwind'
|
|
// Astro Netlify Reference
|
|
// https://github.com/withastro/astro/tree/main/packages/integrations/netlify
|
|
import netlify from '@astrojs/netlify/functions'
|
|
// import sitemap from '@astrojs/sitemap'
|
|
import partytown from '@astrojs/partytown'
|
|
|
|
import tsconfigPaths from 'vite-tsconfig-paths'
|
|
// import { viteCommonjs } from '@originjs/vite-plugin-commonjs'
|
|
|
|
import { makeViteDefinitions } from './helpers/public-runtime-config.mjs'
|
|
|
|
import viteConfig from './vite.config.mjs'
|
|
|
|
console.log( 'Running Astro Config File' )
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
output: 'server',
|
|
publicDir: './static',
|
|
site: 'https://doesitarm.com/',
|
|
adapter: netlify({
|
|
dist: new URL('./dist/', import.meta.url)
|
|
}),
|
|
integrations: [
|
|
// Astro Vue Reference
|
|
// https://github.com/withastro/astro/tree/main/packages/integrations/vue
|
|
vue(),
|
|
tailwind(),
|
|
// Sitemap Reference
|
|
// https://github.com/withastro/astro/blob/main/packages/integrations/sitemap/src/index.ts
|
|
// https://github.com/withastro/astro/tree/main/packages/integrations/sitemap#configuration
|
|
// sitemap({
|
|
// customPages: [
|
|
// '/relative-url',
|
|
// 'https://doesitarm.com/absolute-url',
|
|
// ]
|
|
// })
|
|
partytown({
|
|
// Add dataLayer.push as a forwarding-event.
|
|
// https://github.com/withastro/astro/tree/main/packages/integrations/partytown#configforward
|
|
config: { forward: [ 'dataLayer.push' ] },
|
|
}),
|
|
],
|
|
// Vite options
|
|
// https://docs.astro.build/en/reference/configuration-reference/#vite
|
|
vite: viteConfig
|
|
})
|