change load order
Browse files- dist/index.html +1 -1
- webpack.config.js +1 -1
dist/index.html
CHANGED
@@ -98,7 +98,7 @@
|
|
98 |
d-contents nav > div > a:hover,
|
99 |
d-contents nav > ul > li > a:hover {
|
100 |
text-decoration: none;
|
101 |
-
}</style><script defer="defer" src="
|
102 |
"title": "π· FineWeb: decanting the web for the finest text data at scale",
|
103 |
"description": "This blog covers a discussion on processing and evaluating data quality at scale, the π· FineWeb recipe (listing and explaining all of our design choices), and the process followed to create π FineWeb-Edu.",
|
104 |
"published": "May 28, 2024",
|
|
|
98 |
d-contents nav > div > a:hover,
|
99 |
d-contents nav > ul > li > a:hover {
|
100 |
text-decoration: none;
|
101 |
+
}</style><script defer="defer" src="distill.bundle.js"></script><script defer="defer" src="main.bundle.js"></script></head><body><d-front-matter><script id="distill-front-matter" type="text/json">{
|
102 |
"title": "π· FineWeb: decanting the web for the finest text data at scale",
|
103 |
"description": "This blog covers a discussion on processing and evaluating data quality at scale, the π· FineWeb recipe (listing and explaining all of our design choices), and the process followed to create π FineWeb-Edu.",
|
104 |
"published": "May 28, 2024",
|
webpack.config.js
CHANGED
@@ -35,8 +35,8 @@ const transformDataColors = async (data, path) => {
|
|
35 |
|
36 |
module.exports = {
|
37 |
entry: {
|
38 |
-
main: "./src/index.js",
|
39 |
distill: "./src/distill.js",
|
|
|
40 |
},
|
41 |
output: {
|
42 |
filename: "[name].bundle.js", // The output file
|
|
|
35 |
|
36 |
module.exports = {
|
37 |
entry: {
|
|
|
38 |
distill: "./src/distill.js",
|
39 |
+
main: "./src/index.js",
|
40 |
},
|
41 |
output: {
|
42 |
filename: "[name].bundle.js", // The output file
|