mirror of
https://github.com/withastro/astro.git
synced 2025-07-28 06:25:45 +08:00
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
// @ts-check
|
|
|
|
import solid from '@astrojs/solid-js';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
// Enable Solid to support Solid JSX components.
|
|
integrations: [solid()],
|
|
});
|