resolve some edge cases when using requireJS/amd in browser with vite
npm install vite-plugin-treat-umd-as-commonjsMake code runs when using requireJS/amd in browser with vite. This plugin is for a paticular edge case. check RequireJS environment in browser will break the UMD module conversion

``javascript
// vite.config.js
const { defineConfig } = require("vite");
const { treatAsCommonjs } = require("vite-plugin-treat-umd-as-commonjs");
module.exports = defineConfig({
plugins: [treatAsCommonjs()],
});
`
It will simple add var define = false; in modules from node_modules by default which avoid the browser requireJS/amd environment to register the module to amd. You can also specifically include or exclude pattern.
`javascript``
type Options = {
// moduleId/files to include
indluce?: Array
// moduleId/files to exclude
exclude?: Array
}