We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcc229a commit 1429c30Copy full SHA for 1429c30
example/src/routes/index.svelte
@@ -11,6 +11,10 @@
11
font-size: 12px;
12
}
13
14
+ .hello{
15
+ font-weight: 700;
16
+ }
17
+
18
@media (min-width: 30em) and (max-width: 80em) {
19
.hello{
20
font-size: 100px;
example/svelte.config.js
@@ -1,12 +1,14 @@
1
import preprocess from 'svelte-preprocess';
2
import adapter from '@sveltejs/adapter-static';
3
-// import gloryPreprocess from "../src/index.js"
4
-import gloryPreprocess from "glory-svelte-preprocess"
+import gloryPreprocess from "../src/index.js"
+// import gloryPreprocess from "glory-svelte-preprocess"
5
6
/** @type {import('@sveltejs/kit').Config} */
7
const config = {
8
preprocess: [
9
- gloryPreprocess(),
+ gloryPreprocess({
10
+ lazyLoad: false
+ }),
preprocess()
],
0 commit comments