-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable automatic comments #24
Comments
Of course, the content is highly customizable. Comment symbols will only be added when they are missing. |
Ah, good point - I actually have to add any comment to skip the automatic wrapping. I mean, this does not work:
whereas this works:
|
Got it! I will add an option to support this requirement. |
Please upgrade to // vite.config.ts
export default defineConfig({
plugins: [
banner({
content: `#!/usr/bin/env node`,
verify: false,
}),
],
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can I disable the
/*! ... */
wrapper? I would like to use this plugin to inject a#!/usr/bin/env node
shebang to the code.The text was updated successfully, but these errors were encountered: