- Added gradient transitions between sections in global.css - Portfolio section now has gradient-top (dark to white fade) - Blog section now has gradient-bottom (white fade from dark) - Reduced portfolio overlay opacity from 0.85 to 0.65 - Added border to blog cards for white-on-white visibility - Blog cards now have primary color accent on hover
27 lines
664 B
JavaScript
27 lines
664 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import react from "@astrojs/react";
|
|
import mdx from "@astrojs/mdx";
|
|
import node from "@astrojs/node";
|
|
import emdash, { local } from "emdash/astro";
|
|
import { sqlite } from "emdash/db";
|
|
|
|
export default defineConfig({
|
|
output: "server",
|
|
adapter: node({
|
|
mode: 'standalone'
|
|
}),
|
|
integrations: [
|
|
react(),
|
|
mdx(),
|
|
emdash({
|
|
database: sqlite({ url: "file:./data.db" }),
|
|
storage: local({
|
|
directory: "./uploads",
|
|
baseUrl: "/_emdash/api/media/file",
|
|
}),
|
|
}),
|
|
],
|
|
image: { layout: "constrained", responsiveStyles: true },
|
|
devToolbar: { enabled: true },
|
|
}); |