15 lines
267 B
JavaScript
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()],
|
|
});
|