Skip to content

Commit f28aa43

Browse files
Formatting fix 1
1 parent 5653eb3 commit f28aa43

File tree

5 files changed

+3
-9
lines changed

5 files changed

+3
-9
lines changed

examples/javascript-vite/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,3 @@
3434
"license": "SEE LICENSE IN https://www.nutrient.io/legal/Nutrient_SDK_User_Evaluation_Subscription_Agreement",
3535
"readme": "https://www.nutrient.io/guides/web"
3636
}
37-

examples/javascript-vite/src/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,4 +171,3 @@ document.querySelector("#selectFile").addEventListener("change", (event) => {
171171

172172
event.target.value = null;
173173
});
174-

examples/javascript-vite/src/style.css

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
html,
88
body {
99
height: 100vh;
10-
font-family:
11-
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
12-
Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
10+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
11+
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
1312
}
1413

1514
/**
@@ -102,4 +101,3 @@ header {
102101
padding: 0 10px;
103102
}
104103
}
105-

examples/javascript-vite/src/utils.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,3 @@ export function fileToArrayBuffer(file) {
3939
export function processFiles(files) {
4040
return Promise.all(files.map(fileToArrayBuffer));
4141
}
42-

examples/javascript-vite/vite.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { defineConfig } from "vite";
21
import copy from "rollup-plugin-copy";
2+
import { defineConfig } from "vite";
33

44
// Check if we should use npm package instead of CDN
55
const useNpm = process.env.USE_NPM === "true";
@@ -40,4 +40,3 @@ export default defineConfig({
4040
open: true,
4141
},
4242
});
43-

0 commit comments

Comments
 (0)