Archived
Template
1
Fork 0
This repository has been archived on 2024-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
Contour/astro.config.mjs
2024-01-30 11:04:16 -05:00

25 lines
No EOL
593 B
JavaScript

import { defineConfig } from 'astro/config'
// import node from '@astrojs/node'
import astroFontPicker from 'astro-font-picker'
import vue from '@astrojs/vue'
import astroI18next from "astro-i18next"
import Compress from "astro-compress"
export default defineConfig({
site: 'https://fluxnodes.net',
trailingSlash: "ignore",
output: 'server',
// adapter: node({
// mode: 'standalone',
// }),
integrations: [
astroFontPicker(),
astroI18next(),
Compress(),
vue()
],
server: {
port: 2000,
host: true
}
})