- Added server port configuration in `astro.config.mjs`. - Updated Biome schema version in `biome.json`. - Updated dependencies in `package.json` to latest versions. - Introduced new devcontainer configuration files for development setup. - Removed unused components related to movie search and forms. - Refactored login handling with new Astro components for better error management. - Adjusted layouts for improved structure and user experience.
16 lines
316 B
JavaScript
16 lines
316 B
JavaScript
// astro.config.mjs
|
|
import { defineConfig } from "astro/config";
|
|
import react from "@astrojs/react";
|
|
import node from "@astrojs/node";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [react()],
|
|
output: "server",
|
|
adapter: node({
|
|
mode: "standalone",
|
|
}),
|
|
server: {
|
|
port: 8080
|
|
}
|
|
});
|