Files
leim-maps/astro.config.mjs
Alexis da2faedd27 Changed deploy to node server
Afaik, Nanostores need SSR in the setup I used, so for now, the build will have to be deployed on a node server.
I could have used a full Vue app to avoid this, but oh well, nothing we can't refactor ; and it just works anyways. Plus it would have meant switching to a vue leaflet wrapper that hasn't been maintained in years.
Can always change it later.
2023-10-14 11:36:05 +02:00

13 lines
284 B
JavaScript

import { defineConfig } from 'astro/config';
import nodeJs from '@astrojs/node';
import vue from "@astrojs/vue";
// https://astro.build/config
export default defineConfig({
integrations: [vue()],
output: 'server',
adapter: nodeJs({
mode: 'standalone'
}),
});