// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.Extensions.DependencyInjection; namespace Microsoft.AspNetCore.SpaServices.StaticFiles { /// /// Represents options for serving static files for a Single Page Application (SPA). /// public class SpaStaticFilesOptions { /// /// Gets or sets the path, relative to the application root, of the directory in which /// the physical files are located. /// /// If the specified directory does not exist, then the /// /// middleware will not serve any static files. /// public string RootPath { get; set; } } }