Files
halo-theme-WarmIsland/astro.config.mjs
T
2026-04-07 22:52:16 +08:00

15 lines
267 B
JavaScript

// @ts-check
import { defineConfig } from "astro/config";
import vue from "@astrojs/vue";
export default defineConfig({
base: "/themes/astro-starter",
build: {
assets: "assets",
format: "file",
},
outDir: "./templates",
integrations: [vue()],
});