반응형
ASP.Net MVC Core에서는 BundleConfig.cs를 제거하고 bundleconfig.json 파일로 대체했습니다. bundleconfig.json에서 번들을 설정해야합니다.. 프로젝트에 이 파일이 없으면이 이름으로 json 파일을 추가하고 사용하면 됩니다.
bundleconfig.json
예시
// Configure bundling and minification for the project.
// More info at https://go.microsoft.com/fwlink/?LinkId=808241
[
{
"outputFileName": "wwwroot/css/site.min.css",
// An array of relative input file paths. Globbing patterns supported
"inputFiles": [
"wwwroot/css/site.css"
]
},
{
"outputFileName": "wwwroot/js/bundles.min.js",
"inputFiles": [
"wwwroot/js/site.js",
"wwwroot/lib/jquery/dist/jquery.js",
"wwwroot/lib/jquery/dist/jqueryvalidate.js"
],
// Optionally specify minification options
"minify": {
"enabled": true,
"renameLocals": true
},
// Optionally generate .map file
"sourceMap": false
}
]
_Layout.cshtml
<script src="~/js/bundles.min.js"></script>
반응형
'ASP.NET > .Net Core' 카테고리의 다른 글
Asp.net core postgreSql 사용하기 (0) | 2020.06.08 |
---|---|
.NET Core REST API 서버, 테스트 부터 배포까지 (1) | 2020.04.27 |
IActionResult and ActionResult - ASP.NET Core : 번역 (0) | 2020.04.24 |