25 lines
No EOL
593 B
JavaScript
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
|
|
}
|
|
}) |