mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
feat: Add new web frontend
This commit is contained in:
22
packages/web/astro.config.mjs
Normal file
22
packages/web/astro.config.mjs
Normal file
@@ -0,0 +1,22 @@
|
||||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
import cloudflare from "@astrojs/cloudflare"
|
||||
import solidJs from "@astrojs/solid-js";
|
||||
import config from './config.mjs';
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
site: config.url,
|
||||
adapter: cloudflare({
|
||||
imageService: "passthrough",
|
||||
}),
|
||||
devToolbar: {
|
||||
enabled: false
|
||||
},
|
||||
server: {
|
||||
host: "0.0.0.0",
|
||||
},
|
||||
integrations: [
|
||||
solidJs()
|
||||
]
|
||||
});
|
||||
Reference in New Issue
Block a user