@unsetsoft/ryunixjs 0.2.35-nightly.2 → 0.2.35-nightly.4

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.35-nightly.2",
3
+ "version": "0.2.35-nightly.4",
4
4
  "license": "MIT",
5
5
  "main": "./dist/Ryunix.js",
6
6
  "private": false,
@@ -112,6 +112,13 @@ export default {
112
112
  loader: "url-loader",
113
113
  options: { limit: false },
114
114
  },
115
+ {
116
+ test: /\.ico$/i,
117
+ type: "asset/resource",
118
+ generator: {
119
+ filename: "[name][ext][query]",
120
+ },
121
+ },
115
122
  ],
116
123
  },
117
124
  resolve: {
@@ -119,7 +126,7 @@ export default {
119
126
  },
120
127
  plugins: [
121
128
  new HtmlWebpackPlugin({
122
- favicon: `./${dir}/public/favicon.ico`,
129
+ favicon: join(dir, "public", "favicon.ico"),
123
130
  template: join(dir, "public", "index.html"),
124
131
  publicPath: join(dir, "public"),
125
132
  }),