Skip to content

Instantly share code, notes, and snippets.

View saidbouhmouch's full-sized avatar
🎯

Essaid Bouhmouch saidbouhmouch

🎯
View GitHub Profile
@saidbouhmouch
saidbouhmouch / sonarqube-setup-angular.md
Created December 16, 2022 10:53 — forked from 2rohityadav/sonarqube-setup-angular.md
sonarqube setup with angular

SONAR Configuration - Angular

1) Install sonarqube-scanner -

npm install sonarqube-scanner --save-dev

2) Need to install few npm packages as a devDependencies

"devDependencies": {

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@saidbouhmouch
saidbouhmouch / Laravel : set resolve alias in Laravel mix .js
Last active June 9, 2020 22:45
Laravel : set resolve alias in Laravel mix
Add the following config at the beginning of webpack.mix.js.
let mix = require('laravel-mix');
const path = require('path')
mix.webpackConfig({
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'@components': path.resolve(__dirname, 'resources/js/app/components'),