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
body { | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
} |
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
root = true | |
[*] | |
charset = utf-8 | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
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
let history = require("connect-history-api-fallback"); | |
let express = require("express"); | |
let path = require("path"); | |
let serveStatic = require("serve-static"); | |
let compression = require("compression"); | |
let app = express(); | |
app.use(compression()); | |
app.use(history()); | |
app.use(serveStatic(__dirname + "/dist")); |
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
[ | |
{ | |
"key": "shift+cmd+7", | |
"command": "editor.action.addCommentLine", | |
"when": "editorTextFocus", | |
"args": { "block": false } | |
}, | |
{ | |
"key": "shift+cmd+6", | |
"command": "editor.action.removeCommentLine", |
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
{ | |
"workbench.fontAliasing": "default", | |
"editor.minimap.enabled": true, | |
"editor.minimap.renderCharacters": false, | |
"editor.tabSize": 2, | |
"files.autoSave": "off", | |
"javascript.implicitProjectConfig.checkJs": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"extensions.autoUpdate": true, | |
"telemetry.enableTelemetry": 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
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete_commit_on_tab": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/User/SublimeLinter/Material Spacegray (SL).tmTheme", | |
"draw_minimap_border": false, | |
"enable_tab_scrolling": false, | |
"enable_telemetry": false, | |
"ensure_newline_at_eof_on_save": false, | |
"file_exclude_patterns": |