Skip to content
Draft

Test PR #3182

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import remarkDirective from 'remark-directive';
import remarkHeading from 'remark-heading-id';
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import tailwindcss from '@tailwindcss/vite';
import { attributeMarkdown, wrapTables } from '/src/themes/octopus/utilities/custom-markdown.mjs';
import llmMdEmitter from './src/integrations/llm-md-emitter.ts';

Expand All @@ -12,6 +13,11 @@ export default defineConfig({
mdx(),
llmMdEmitter()
],
// Tailwind v4 only lands on pages that import the design-system entry
// (src/design-system/theme.css), so the live site stays untouched.
vite: {
plugins: [tailwindcss()]
},
markdown: {
shikiConfig: {
theme: 'light-plus'
Expand Down
12 changes: 12 additions & 0 deletions dictionary-octopus.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ actionid
actiontemplates
Adfs
advfirewall
affordances
agentic
allatclaims
ALLUSERSPROFILE
Expand Down Expand Up @@ -44,6 +45,7 @@ azureaccount
azureactivedirectory
azurefile
bacpac
behaviour
Bento
Blkio
bootstrap
Expand Down Expand Up @@ -191,6 +193,7 @@ gruntfile
guestloginenabled
gulpfile
GZRS
Hanken
hasattr
Hashtable
hastscript
Expand Down Expand Up @@ -282,6 +285,7 @@ maxage
mdast
Metabase
microsite
microsites
milli
minidump
minifier
Expand Down Expand Up @@ -310,6 +314,7 @@ mytransform.config
namespacing
Nartac
navigationid
navscroll
NETBIOS
netcore
netcoreapp
Expand Down Expand Up @@ -341,6 +346,7 @@ npmjs
NTDS
NTFS
NTLM
nums
nupkg
NVARCHAR
O_WRONLY
Expand Down Expand Up @@ -373,6 +379,7 @@ Octostache
octostorage
octoterra
OIDC
oklab
oldcert
oldguid
oldthumbprint
Expand Down Expand Up @@ -490,6 +497,7 @@ serviceaccount
Sesna
setspn
sfproj
shadcn
shiki
showcerts
Showplan
Expand Down Expand Up @@ -527,6 +535,7 @@ struct
stylesheet
subcomponent
subcontext
sublist
sunsetting
swaggerui
systemprofile
Expand Down Expand Up @@ -573,6 +582,7 @@ umoci
undeployed
undeploying
uniquestring
unlayered
Unmarshal
updateprogress
upgradeavailability
Expand All @@ -590,6 +600,7 @@ VARCHAR
variablename
variableset
vhdx
viewports
violationreason
VMSS
vnet
Expand All @@ -612,6 +623,7 @@ windir
windowsfeatures
Wireshark
WIXUI
wordmark
workerpool
workerpools
workertools
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,16 @@
"devDependencies": {
"@playwright/test": "^1.59.1",
"@pnpm/exe": "^11.0.9",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.3.0",
"cspell": "^10.0.0",
"csv-parse": "^6.2.1",
"linkinator": "7.0.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1"
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.3.0"
},
"pnpm": {
"overrides": {
Expand Down
Loading
Loading