kazuya kawaguchi
kazuya kawaguchi
Thank you for your reporting! That regression is occured from v8.0.0-beta.10, when I confirmed with your reproduction by changing package.json
This issue is caused by unplugin-vue-i18n, so we need fix it.
@rchl Could you review this PR for v7? 🙏 I'm busy so I can't handling everything? 😅
Thank you for your reporting! Sorry for my late reply. 🙇 Unfortunately, I could not reproduce this issue. We need minimal reproduction, so Could you give us your it please?
I use always vscode (sometime vim). I would like to check other editors if I could, but unfortunately I don't have time to check all editors. wish there was something...
you can work-around the below `rollup.dts` options: ```ts import { defineBuildConfig } from 'unbuild'; export default defineBuildConfig({ // ... rollup: { dts: { compilerOptions: { composite: false } } },...
Thank you for your kindful comment, as always! ❤️ I’ve felt that `_generate` is for internal. About `experimental.payloadExtraction` and `nitro.prerender.crawlLinks: true`, those are good and helpful for me. :) Thanks!
Hi! I'll support about auto complete. vue-i18n v9 has type-safe resources feature. https://vue-i18n.intlify.dev/guide/advanced/typescript.html we need to setup manually in vue-i18n. In nuxt, I will support auto complete by respecting the...
Thank you for your reporting! Lovely your contribution always! I seem that your issue occurs because the nuxt i18n module extend pages added with `extendPages`. Your module is a nuxt...
Ah, I see, the Rust side `write` does not receive output otpions from the JS side, it writes with the outputoptions passed to the Bundler when it initializes. https://github.com/rolldown/rolldown/blob/ec85051013b58b31abbb92e50472a9b1e476e321/crates/rolldown_binding/src/bundler.rs#L19-L41 If...