Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal_state
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal_state
Merge requests
!49
Add Production Docs Config
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add Production Docs Config
issue/drupal_state-3280391:3280391-control-authd-reqs
into
1.0.x
Overview
0
Commits
13
Pipelines
3
Changes
1
Merged
Brian Perry
requested to merge
issue/drupal_state-3280391:3280391-control-authd-reqs
into
1.0.x
2 years ago
Overview
0
Commits
13
Pipelines
3
Changes
1
Expand
0
0
Merge request reports
Compare
1.0.x
version 1
f5256268
2 years ago
1.0.x (base)
and
latest version
latest version
1eb6d2dd
13 commits,
2 years ago
version 1
f5256268
12 commits,
2 years ago
1 file
+
11
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
web/astro.config.prod.mjs
+
11
−
17
Options
// Full Astro Configuration API Documentation:
// https://docs.astro.build/reference/configuration-reference
import
{
defineConfig
}
from
'
astro/config
'
;
import
preact
from
'
@astrojs/preact
'
;
import
react
from
'
@astrojs/react
'
;
// @type-check enabled!
// VSCode and other TypeScript-enabled text editors will provide auto-completion,
// helpful tooltips, and warnings if your exported object is invalid.
// You can disable this by removing "@ts-check" and `@type` comments below.
// @ts-check
export
default
/** @type {import('astro').AstroUserConfig} */
({
renderers
:
[
// Enable the Preact renderer to support Preact JSX components.
'
@astrojs/renderer-preact
'
,
// Enable the React renderer, for the Algolia search component
'
@astrojs/renderer-react
'
,
// https://astro.build/config
export
default
defineConfig
({
integrations
:
[
// Enable Preact to support Preact JSX components.
preact
(),
// Enable React for the Algolia search component.
react
(),
],
buildOptions
:
{
site
:
'
https://project.pages.drupalcode.org/drupal_state/
'
,
},
site
:
'
https://project.pages.drupalcode.org/drupal_state/
'
,
});
Loading