@unsetsoft/ryunixjs 0.2.33 → 0.2.35-nightly.0
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 +12 -0
package/package.json
CHANGED
package/webpack.config.mjs
CHANGED
|
@@ -112,6 +112,17 @@ export default {
|
|
|
112
112
|
loader: "url-loader",
|
|
113
113
|
options: { limit: false },
|
|
114
114
|
},
|
|
115
|
+
{
|
|
116
|
+
test: /\.(ico)$/,
|
|
117
|
+
use: [
|
|
118
|
+
{
|
|
119
|
+
loader: "file-loader",
|
|
120
|
+
options: {
|
|
121
|
+
name: "[name].[ext]",
|
|
122
|
+
},
|
|
123
|
+
},
|
|
124
|
+
],
|
|
125
|
+
},
|
|
115
126
|
],
|
|
116
127
|
},
|
|
117
128
|
resolve: {
|
|
@@ -121,6 +132,7 @@ export default {
|
|
|
121
132
|
new HtmlWebpackPlugin({
|
|
122
133
|
favicon: join(dir, "public", "favicon.ico"),
|
|
123
134
|
template: join(dir, "public", "index.html"),
|
|
135
|
+
publicPath: join(dir, "public"),
|
|
124
136
|
}),
|
|
125
137
|
],
|
|
126
138
|
externals: {
|