Replies: 2 comments 2 replies
-
Hi, so you want to have your |
Beta Was this translation helpful? Give feedback.
2 replies
-
This feature will be in the v1.8 of the package. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm just started to use your nuget package, great job!
But my vite config file is in a subfolder, and it's no way to configure it for my need.
is it possible to officially add support of specific folder for vite config for a future version?
I've just replaced:
var workingDirectory = environment.ContentRootPath;
by
var workingDirectory = Path.Combine(environment.ContentRootPath, this._viteOptions.Server.Path);
and add the field into ViteServerOptions.cs
/// <summary> /// The path to the vite config file. Default value is the current directory. /// </summary> public string Path { get; init; } = "/";
and every thing is working fine for me.
Thank you in advance,
Florian METOZ
Beta Was this translation helpful? Give feedback.
All reactions