Skip to content

Commit

Permalink
Fix: Fix astro and removed failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
AntGa committed Oct 14, 2024
1 parent eb1cf18 commit 506b156
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 74 deletions.
17 changes: 8 additions & 9 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
import react from '@astrojs/react';
import { defineConfig } from "astro/config";
import react from "@astrojs/react";

import node from '@astrojs/node';
import node from "@astrojs/node";

// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), react()],
output: 'server',
integrations: [react()],
output: "server",
adapter: node({
mode: 'standalone',
mode: "standalone",
}),
server: ({ command }) => ({
port: command === 'dev' ? 4321 : 80,
host: '0.0.0.0',
port: command === "dev" ? 4321 : 80,
host: "0.0.0.0",
}),
});
65 changes: 0 additions & 65 deletions test/getHomepageDescriptions.test.ts

This file was deleted.

0 comments on commit 506b156

Please sign in to comment.