mirror of
https://github.com/rjNemo/orbital-orbit
synced 2026-06-06 09:46:40 +00:00
Upgrade Astro to 5.11.0, Vue to 3.5.17, Prettier to 3.6.2, and update related dependencies and lockfile. Also update @astrojs/rss, @astrojs/vue, @vitejs/plugin-vue-jsx, @volar/kit, and Shiki packages to latest versions. Add "format" script to package.json for code formatting. This ensures compatibility, bug fixes, and improved features across the project.
10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
import vue from "@astrojs/vue";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: "https://orbital-orbit.netlify.app",
|
|
integrations: [vue()],
|
|
});
|