feat(article): conf serveur +

feat(config): noopener norefer on links +
fix(style): larger wrapper for editorial content +
fix(structure): add assets folder in src
This commit is contained in:
nico 2025-01-29 15:23:19 +01:00
parent 202303f8f7
commit 0838ea9a47
Signed by: Nicolas
SSH key fingerprint: SHA256:ELi8eDeNLl5PTn64G+o2Kx5+XVDfHF5um2tZigfwWkM
26 changed files with 143 additions and 51 deletions

View file

@ -1,18 +1,19 @@
{
"extends": "astro/tsconfigs/base",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"]
},
"strictNullChecks": true,
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
]
}
"extends": "astro/tsconfigs/base",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@assets/*": ["src/assets/*"]
},
"strictNullChecks": true,
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
]
}
}