File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -222,8 +222,8 @@ private static string GetString(IHtmlContent content)
222
222
223
223
public string ? GetManifest ( )
224
224
{
225
- return _fileSystem . File . Exists ( GetPublicPathForFile ( _options . Value . ManifestFilename ) )
226
- ? _fileSystem . File . ReadAllText ( GetPublicPathForFile ( _options . Value . ManifestFilename ) )
225
+ return _fileSystem . File . Exists ( GetBuildPathForFile ( _options . Value . ManifestFilename ) )
226
+ ? _fileSystem . File . ReadAllText ( GetBuildPathForFile ( _options . Value . ManifestFilename ) )
227
227
: null ;
228
228
}
229
229
}
Original file line number Diff line number Diff line change @@ -130,7 +130,6 @@ public void TestViteInput()
130
130
result = mock . Object . Input ( "index.scss" ) ;
131
131
Assert . That ( result . ToString ( ) , Is . EqualTo ( "<link href=\" /assets/index.css\" rel=\" stylesheet\" />\n \t " ) ) ;
132
132
133
-
134
133
// Hot file with css import
135
134
options . SetupGet ( x => x . Value ) . Returns ( new ViteOptions
136
135
{
You can’t perform that action at this time.
0 commit comments