-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from joriswitstok/chore/template_sync_ab746d0
upstream merge template repository
- Loading branch information
Showing
19 changed files
with
4,120 additions
and
5,328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
import path from 'path'; | ||
import { fileURLToPath } from 'url'; | ||
|
||
import { defineConfig } from 'astro/config'; | ||
|
||
import sitemap from '@astrojs/sitemap'; | ||
import tailwind from '@astrojs/tailwind'; | ||
import mdx from '@astrojs/mdx'; | ||
import partytown from '@astrojs/partytown'; | ||
import icon from 'astro-icon'; | ||
import compress from 'astro-compress'; | ||
import type { AstroIntegration } from 'astro'; | ||
|
||
import astrowind from './vendor/integration'; | ||
|
||
import { readingTimeRemarkPlugin, responsiveTablesRehypePlugin, lazyImagesRehypePlugin } from './src/utils/frontmatter'; | ||
|
||
const __dirname = path.dirname(fileURLToPath(import.meta.url)); | ||
|
||
const hasExternalScripts = false; | ||
const whenExternalScripts = (items: (() => AstroIntegration) | (() => AstroIntegration)[] = []) => | ||
hasExternalScripts ? (Array.isArray(items) ? items.map((item) => item()) : [items()]) : []; | ||
|
||
export default defineConfig({ | ||
output: 'static', | ||
|
||
integrations: [ | ||
tailwind({ | ||
applyBaseStyles: false, | ||
}), | ||
sitemap(), | ||
mdx(), | ||
icon({ | ||
include: { | ||
tabler: ['*'], | ||
'flat-color-icons': [ | ||
'template', | ||
'gallery', | ||
'approval', | ||
'document', | ||
'advertising', | ||
'currency-exchange', | ||
'voice-presentation', | ||
'business-contact', | ||
'database', | ||
], | ||
}, | ||
}), | ||
|
||
...whenExternalScripts(() => | ||
partytown({ | ||
config: { forward: ['dataLayer.push'] }, | ||
}) | ||
), | ||
|
||
compress({ | ||
CSS: true, | ||
HTML: { | ||
'html-minifier-terser': { | ||
removeAttributeQuotes: false, | ||
}, | ||
}, | ||
Image: false, | ||
JavaScript: true, | ||
SVG: false, | ||
Logger: 1, | ||
}), | ||
|
||
astrowind({ | ||
config: './src/config.yaml', | ||
}), | ||
], | ||
|
||
image: { | ||
domains: ['cdn.pixabay.com'], | ||
}, | ||
|
||
markdown: { | ||
remarkPlugins: [readingTimeRemarkPlugin], | ||
rehypePlugins: [responsiveTablesRehypePlugin, lazyImagesRehypePlugin], | ||
}, | ||
|
||
vite: { | ||
resolve: { | ||
alias: { | ||
'~': path.resolve(__dirname, './src'), | ||
}, | ||
}, | ||
}, | ||
}); |
Oops, something went wrong.