21 lines
404 B
JavaScript
21 lines
404 B
JavaScript
|
import { defineConfig } from 'astro/config'
|
||
|
// import bun from 'astro-bun-adapter'
|
||
|
import vue from "@astrojs/vue"
|
||
|
|
||
|
export default defineConfig({
|
||
|
site: "https://studio.sudovanilla.org",
|
||
|
base: "/",
|
||
|
// output: 'server',
|
||
|
// adapter: bun(),
|
||
|
server: {
|
||
|
port: 1600,
|
||
|
host: true
|
||
|
},
|
||
|
integrations: [
|
||
|
vue()
|
||
|
],
|
||
|
devToolbar: {
|
||
|
enabled: false
|
||
|
}
|
||
|
});
|