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
A clear and concise description of what the feature is
This feature enables users to create a vite.config.ts file within the plugin/server directory, allowing for the enhancement and customization of the Vite configuration.
Why should this feature be included?
By supplementing the default configuration, developers can tailor build options, plugins, and other settings specific to their project needs, facilitating a more flexible development environment.
Please provide an example for how this would work
some-plugin/server/vite.config.ts
import{mergeConfig}from"vite";exportdefault(config)=>{returnmergeConfig(config,{// Vite configuration});};
The text was updated successfully, but these errors were encountered:
A clear and concise description of what the feature is
This feature enables users to create a vite.config.ts file within the plugin/server directory, allowing for the enhancement and customization of the Vite configuration.
Why should this feature be included?
By supplementing the default configuration, developers can tailor build options, plugins, and other settings specific to their project needs, facilitating a more flexible development environment.
Please provide an example for how this would work
some-plugin/server/vite.config.ts
The text was updated successfully, but these errors were encountered: