@unsetsoft/ryunixjs 0.2.37-nightly.18 → 0.2.37-nightly.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unsetsoft/ryunixjs",
3
- "version": "0.2.37-nightly.18",
3
+ "version": "0.2.37-nightly.19",
4
4
  "license": "MIT",
5
5
  "main": "./dist/Ryunix.js",
6
6
  "private": false,
@@ -29,10 +29,8 @@
29
29
  "@babel/preset-react": "^7.22.5",
30
30
  "@mdx-js/loader": "^2.3.0",
31
31
  "babel-loader": "^9.1.3",
32
- "cors": "^2.8.5",
33
32
  "crypto": "^1.0.1",
34
33
  "css-loader": "^6.8.1",
35
- "express": "^4.18.2",
36
34
  "file-loader": "^6.2.0",
37
35
  "glob": "^10.3.7",
38
36
  "html-loader": "^4.2.0",
@@ -118,7 +118,7 @@ export default {
118
118
  options: { limit: false },
119
119
  },
120
120
  {
121
- test: /\.ico$/i,
121
+ test: /\.ico|.png$/i,
122
122
  type: "asset/resource",
123
123
  generator: {
124
124
  filename: "[name][ext][query]",
@@ -131,7 +131,7 @@ export default {
131
131
  },
132
132
  plugins: [
133
133
  new HtmlWebpackPlugin({
134
- favicon: resolveApp(dir, `${config.publicDirectory}/favicon.ico`),
134
+ favicon: resolveApp(dir, `${config.publicDirectory}/favicon.png`),
135
135
  template: resolveApp(dir, `${config.publicDirectory}/index.html`),
136
136
  }),
137
137
  ],