We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf32cff commit 1fd4144Copy full SHA for 1fd4144
www/astro.config.mts
@@ -25,10 +25,17 @@ export default defineConfig({
25
cFetch({
26
lifetime: Duration.hours(1),
27
}),
28
- studiocms()
+ studiocms(),
29
],
30
security: {
31
- checkOrigin: false,
+ allowedDomains: [
32
+ {
33
+ hostname: 'studiocms.dev',
34
+ },
35
36
+ hostname: '*.studiocms.dev',
37
38
+ ],
39
},
40
adapter: node({
41
mode: 'standalone',
www/studiocms.config.ts
@@ -16,7 +16,7 @@ export default defineStudioCMSConfig({
16
inject404Route: false,
17
18
api: {
19
- apiDocs: false
+ apiDocs: false,
20
21
22
componentRegistry: {
0 commit comments