The Lenis library is updated to improve smooth scrolling. The lenis.js script is replaced by lenisSmoothScroll.js and certain lenis related CSS rules are removed. Also, it encompasses changes in the way some plugins are imported in different components, moving from inline script import to modular imports. Additionally, the customCss file location is updated in the astro.config.mjs file. New dependencies are added to the package and package-lock json.
16 lines
No EOL
419 B
JSON
16 lines
No EOL
419 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@content/*": ["src/content/*"],
|
|
"@data/*": ["src/data_files/*"],
|
|
"@images/*": ["src/images/*"],
|
|
"@scripts/*": ["src/assets/scripts/*"],
|
|
"@styles/*": ["src/assets/styles/*"],
|
|
"@utils/*": ["src/utils/*"]
|
|
},
|
|
}
|
|
} |