vite-plugin-react-server
Version:
Vite plugin for React Server Components (RSC)
25 lines (23 loc) • 532 B
JavaScript
/**
* vite-plugin-react-server
* Copyright (c) Nico Brinkkemper
* MIT License
*/
const MIME_TYPES = {
".html": "text/html",
".css": "text/css",
".js": "application/javascript",
".json": "application/json",
".png": "image/png",
".jpg": "image/jpeg",
".jpeg": "image/jpeg",
".gif": "image/gif",
".svg": "image/svg+xml",
".ico": "image/x-icon",
".woff": "font/woff",
".woff2": "font/woff2",
".ttf": "font/ttf",
".rsc": "text/x-component"
};
export { MIME_TYPES };
//# sourceMappingURL=mimeTypes.js.map