@unsetsoft/ryunixjs 0.2.35-nightly.2 → 0.2.35-nightly.3
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 +1 -1
- package/webpack.config.mjs +8 -2
package/package.json
CHANGED
package/webpack.config.mjs
CHANGED
|
@@ -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,9 +126,8 @@ export default {
|
|
|
119
126
|
},
|
|
120
127
|
plugins: [
|
|
121
128
|
new HtmlWebpackPlugin({
|
|
122
|
-
favicon:
|
|
129
|
+
favicon: join(dir, "public", "favicon.ico"),
|
|
123
130
|
template: join(dir, "public", "index.html"),
|
|
124
|
-
publicPath: join(dir, "public"),
|
|
125
131
|
}),
|
|
126
132
|
],
|
|
127
133
|
externals: {
|