This commit is contained in:
Ryan Wang
2026-04-07 22:52:16 +08:00
parent ec2fcc6e4a
commit cf680c4d17
61 changed files with 6826 additions and 4820 deletions
+7 -9
View File
@@ -1,16 +1,14 @@
// @ts-check
import { defineConfig } from "astro/config";
import vue from "@astrojs/vue";
import tailwind from "@astrojs/tailwind";
import astroHaloThemeIntegration from "@halo-dev/astro-halo-theme-integration";
// https://astro.build/config
import vue from "@astrojs/vue";
export default defineConfig({
integrations: [vue(), tailwind(), astroHaloThemeIntegration()],
outDir: "./templates",
base: "/themes/astro-starter",
build: {
assets: "assets",
format: "file",
},
server: {
port: 4000,
},
outDir: "./templates",
integrations: [vue()],
});