Hello,
I am trying to add the external property in remix.config.js to exclude a few packages from the bundle (mentioned below) . This however is not working. Can someone point out where I might be wrong?
module.exports = {
cacheDirectory: "./node_modules/.cache/remix",
ignoredRouteFiles: ["/.*", "/.css", "**/.test.{js,jsx,ts,tsx}"],
external: ["@progress/kendo-drawing", "@progress/kendo-svg-icons"],
}
Thanks!