mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-11 16:30:28 +00:00
feat: Add shadcn worker UI
This commit is contained in:
26
worker/astro.config.mjs
Normal file
26
worker/astro.config.mjs
Normal file
@@ -0,0 +1,26 @@
|
||||
import { defineConfig } from "astro/config";
|
||||
import cloudflare from "@astrojs/cloudflare";
|
||||
|
||||
export default defineConfig({
|
||||
imageService: "compile",
|
||||
vite: {
|
||||
cacheDir: ".astro/vite",
|
||||
resolve: {
|
||||
alias: {
|
||||
"@": "/src",
|
||||
},
|
||||
},
|
||||
},
|
||||
build: {
|
||||
concurrency: 4,
|
||||
},
|
||||
server: {
|
||||
port: 4321,
|
||||
host: "0.0.0.0",
|
||||
allowedHosts: true,
|
||||
},
|
||||
devToolbar: {
|
||||
enabled: false,
|
||||
},
|
||||
adapter: cloudflare(),
|
||||
});
|
||||
Reference in New Issue
Block a user