mirror of
https://github.com/BenRoe/awesome-mechanical-keyboard.git
synced 2024-11-22 12:45:39 +03:00
b664672161
- use astro as static site generator
13 lines
411 B
JavaScript
Executable File
13 lines
411 B
JavaScript
Executable File
import { defineConfig } from 'astro/config';
|
|
import preact from '@astrojs/preact';
|
|
import react from '@astrojs/react';
|
|
|
|
import image from "@astrojs/image";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [// Enable Preact to support Preact JSX components.
|
|
preact(), // Enable React for the Algolia search component.
|
|
react(), image()],
|
|
site: `https://keebfolio.netlify.app`
|
|
}); |