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
Allow the user to configure certain properties to influence how the log output is formatted. It could look something like this:
export default defineConfig({
log: {
disableIndentation: true, // no space at the beginning of each log message
hideTimestamp: true, // no timestamps
hideLabel: true, // no "[ v i t e ]"
disableColors: false, // helpful to colorblind people
highContrast: false, // helpful to colorblind people
... // these are just some examples, there could be many more options
},
});
This would make it easier to use Vite with process managers that already add timestamps and labels to logs
The text was updated successfully, but these errors were encountered:
Allow the user to configure certain properties to influence how the log output is formatted. It could look something like this:
This would make it easier to use Vite with process managers that already add timestamps and labels to logs
The text was updated successfully, but these errors were encountered: