mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-02-10 05:23:09 +00:00
16 lines
343 B
JavaScript
16 lines
343 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import node from '@astrojs/node';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
adapter: node({ mode: 'standalone' }),
|
|
vite: {
|
|
server: {
|
|
proxy: {
|
|
'/api': 'http://127.0.0.1:3000',
|
|
'/health': 'http://127.0.0.1:3000',
|
|
},
|
|
},
|
|
},
|
|
});
|