You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { defineConfig } from 'vite'
import pattycake from 'pattycake'
// typescript wants pattycake.vite(options)
export default defineConfig({
plugins:[ pattycake.vite() ]
})
// the options type HirCodegenOpts just has a bool for chaining so i fixed it as such
export default defineConfig({
plugins:[ pattycake.vite({disableOptionalChaining: true}) ]
})
The text was updated successfully, but these errors were encountered:
import { defineConfig } from 'vite'
import pattycake from 'pattycake'
// typescript wants pattycake.vite(options)
export default defineConfig({
plugins:[ pattycake.vite() ]
})
// the options type HirCodegenOpts just has a bool for chaining so i fixed it as such
export default defineConfig({
plugins:[ pattycake.vite({disableOptionalChaining: true}) ]
})
The text was updated successfully, but these errors were encountered: