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
const path = require('path') | |
const HtmlWebpackPlugin = require('html-webpack-plugin') | |
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin') | |
const isDevelopment = process.env.NODE_ENV !== 'production' | |
module.exports = { | |
mode: isDevelopment ? 'development' : 'production', | |
devtool: isDevelopment ? 'eval-source-map' : 'source-map', | |
entry: path.resolve(__dirname, 'src', 'index.tsx'), |
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.iconTheme": "material-icon-theme", | |
"terminal.integrated.profiles.windows": { | |
"WSL": { | |
"path": ["C:\\WINDOWS\\System32\\wsl.exe"], | |
"args": [], | |
"icon": "terminal-ubuntu" | |
}, | |
"PowerShell": { | |
"source": "PowerShell", |
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
* { | |
box-sizing: border-box; | |
margin: 0; | |
padding: 0; | |
} | |
:root { | |
//variables | |
} |
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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"actions": | |
[ | |
{ | |
"command": | |
{ | |
"action": "copy", | |
"singleLine": 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
# PowerShell settings | |
# Import the oh-my-posh themes and use Spaceship | |
Import-Module posh-git | |
Import-Module oh-my-posh | |
Set-PoshPrompt Spaceship | |
# Autocomplete, keybinds and command history | |
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete |