-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#218 - Move static assets into the Blazor project.
- Loading branch information
Showing
39 changed files
with
26,613 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// 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/site.min.js", | ||
"inputFiles": [ | ||
"wwwroot/js/site.js" | ||
], | ||
// Optionally specify minification options | ||
"minify": { | ||
"enabled": true, | ||
"renameLocals": true | ||
}, | ||
// Optionally generate .map file | ||
"sourceMap": false | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[ | ||
{ | ||
"outputFile": "wwwroot/js/site.min.js", | ||
"inputFile": "wwwroot/js/site.js" | ||
}, | ||
{ | ||
"outputFile": "wwwroot/css/site.min.css", | ||
"inputFile": "wwwroot/css/site.scss" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"compilers": { | ||
"less": { | ||
"autoPrefix": "", | ||
"cssComb": "none", | ||
"ieCompat": true, | ||
"strictMath": false, | ||
"strictUnits": false, | ||
"relativeUrls": true, | ||
"rootPath": "", | ||
"sourceMapRoot": "", | ||
"sourceMapBasePath": "", | ||
"sourceMap": false | ||
}, | ||
"sass": { | ||
"autoPrefix": "", | ||
"includePath": "", | ||
"indentType": "space", | ||
"indentWidth": 2, | ||
"outputStyle": "nested", | ||
"Precision": 5, | ||
"relativeUrls": true, | ||
"sourceMapRoot": "", | ||
"lineFeed": "", | ||
"sourceMap": false | ||
}, | ||
"stylus": { | ||
"sourceMap": false | ||
}, | ||
"babel": { | ||
"sourceMap": false | ||
}, | ||
"coffeescript": { | ||
"bare": false, | ||
"runtimeMode": "node", | ||
"sourceMap": false | ||
}, | ||
"handlebars": { | ||
"root": "", | ||
"noBOM": false, | ||
"name": "", | ||
"namespace": "", | ||
"knownHelpersOnly": false, | ||
"forcePartial": false, | ||
"knownHelpers": [], | ||
"commonjs": "", | ||
"amd": false, | ||
"sourceMap": false | ||
} | ||
}, | ||
"minifiers": { | ||
"css": { | ||
"enabled": true, | ||
"termSemicolons": true, | ||
"gzip": false | ||
}, | ||
"javascript": { | ||
"enabled": true, | ||
"termSemicolons": true, | ||
"gzip": false | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.