We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 835440c commit 735a87dCopy full SHA for 735a87d
package.json
@@ -23,8 +23,8 @@
23
"last 2 versions"
24
],
25
"devDependencies": {
26
- "@11ty/eleventy": "^3.0.0",
27
- "@11ty/eleventy-img": "^5.0.0",
+ "@11ty/eleventy": "^3.1.0",
+ "@11ty/eleventy-img": "^6.0.2",
28
"autoprefixer": "^10.3.1",
29
"chalk": "^4.0.0",
30
"cross-env": "^7.0.3",
src/config/build.js
@@ -10,7 +10,10 @@ export default async function(config) {
10
bundle: true,
11
minify: process.env.ELEVENTY_ENV === "production",
12
sourcemap: process.env.ELEVENTY_ENV !== "production",
13
- plugins: [sassPlugin()]
+ plugins: [sassPlugin({
14
+ quietDeps: true,
15
+ loadPaths: ["node_modules"],
16
+ })]
17
});
18
19
};
0 commit comments