@luutuankiet/gsd-reader 0.2.3 → 0.2.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/cli.cjs +3 -3
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -258,9 +258,9 @@ function commandServe() {
|
|
|
258
258
|
|
|
259
259
|
// MIME types for static file serving
|
|
260
260
|
const MIME_TYPES = {
|
|
261
|
-
'.html': 'text/html',
|
|
262
|
-
'.js': 'application/javascript',
|
|
263
|
-
'.css': 'text/css',
|
|
261
|
+
'.html': 'text/html; charset=utf-8',
|
|
262
|
+
'.js': 'application/javascript; charset=utf-8',
|
|
263
|
+
'.css': 'text/css; charset=utf-8',
|
|
264
264
|
'.json': 'application/json',
|
|
265
265
|
'.png': 'image/png',
|
|
266
266
|
'.jpg': 'image/jpeg',
|