We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3d99fb commit 4c2d26dCopy full SHA for 4c2d26d
.prettierrc
@@ -3,5 +3,14 @@
3
"printWidth": 120,
4
"tabWidth": 2,
5
"endOfLine": "auto",
6
- "trailingComma": "es5"
+ "trailingComma": "es5",
7
+ "plugins": ["prettier-plugin-astro"],
8
+ "overrides": [
9
+ {
10
+ "files": "*.astro",
11
+ "options": {
12
+ "parser": "astro"
13
+ }
14
15
+ ]
16
}
astro.config.mjs
@@ -18,5 +18,12 @@ export default defineConfig({
18
],
19
vite: {
20
plugins: [graphql()],
21
+ css: {
22
+ preprocessorOptions: {
23
+ scss: {
24
+ api: 'modern-compiler',
25
+ },
26
27
28
},
29
});
src/scss/estilosGlobales.scss
@@ -103,7 +103,6 @@ h3 {
103
#marco {
104
.seccionMarco {
105
position: fixed;
106
- // background-color: white;
107
108
109
#marcoInferior {
0 commit comments