f591150512
* basics, framework-alpine, framework-solid, delete unused examples * framework-multiple * Remove non-standard file extensions, add missing .vscode folders * Remove robots.txt * Remove blog-multiple-authors * Rewrite components comments to be consistent * Update lockfile * Remove unnecessary usage of SCSS in subpath example * Fix props weirdness in portfolio example * Remove Lit from `framework-multiple` for now * Misc fixes * Update lockfile * I'm in lockfile hell, send help
13 lines
467 B
JavaScript
13 lines
467 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import preact from '@astrojs/preact';
|
|
import react from '@astrojs/react';
|
|
import svelte from '@astrojs/svelte';
|
|
import vue from '@astrojs/vue';
|
|
import solid from '@astrojs/solid-js';
|
|
import lit from '@astrojs/lit';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
// Enable many frameworks to support all different kinds of components.
|
|
integrations: [preact(), react(), svelte(), vue(), solid(), lit()],
|
|
});
|