mcfly/site/mcfly.config.mjs
Ayo 08c2497fab feat: use fastify as server
- remove nitropack
- new @mcflyjs/fastify package
- test-core workspace for testing the new setup
2026-05-25 22:43:15 +02:00

28 lines
628 B
JavaScript

// @ts-check
import { defineConfig } from '@mcflyjs/config'
// import testPlugin from './test-plugin.mjs'
export default defineConfig({
server: {},
components: 'js',
// plugins: [testPlugin()],
// nitro: {
// preset: 'netlify',
// devServer: {
// watch: ['../packages'],
// },
// routeRules: {
// '/chat': {
// redirect: {
// to: 'https://matrix.to/#/#mcfly:matrix.org',
// statusCode: 302,
// },
// },
// },
// compressPublicAssets: {
// gzip: true,
// brotli: true,
// },
// compatibilityDate: '2024-12-08',
// },
})