Skip to content
View Fanreza's full-sized avatar
🤩
Excited
🤩
Excited

Organizations

@NEVTIK-org @Internity-dev @HADE-Dev
Block or Report

Block or report Fanreza

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Fanreza/README.md

@fanreza's Holopin board

Hi there 👋

I'm Muhamad Jamil Fanreza, people call me Jamil . a Junior Frontend Developer, love to code and learn more about software engineering and software architecture, happy to contribute to open source also sometimes trading in cryptocurrency, I am always open to collaborating on projects. feel free to connect with me here:

Gmail Badge Linkedin Badge Dev.to Badge

Fanreza's github stats Top Langs

user:12964689's SO profile

My Tech Stack

HTML5 CSS3 JavaScript Dart Sass Typescript Jquery VueJs NuxtJs Flutter

Bootstrap Tailwind

Git






Tribute to my friend who create my profile picture

Linkedin Badge

Pinned

  1. vue-eye-dropper vue-eye-dropper Public

    Vue

  2. vue-native-contact-picker vue-native-contact-picker Public

    Vue

  3. Use .env in vite config file Use .env in vite config file
    1
    import { fileURLToPath, URL } from "url";
    2
    import { defineConfig, loadEnv } from "vite";
    3
    import vue from "@vitejs/plugin-vue";
    4
    
                  
    5
    export default ({ mode }) => {
  4. Override tailwind reset ( when using... Override tailwind reset ( when using WYSIWYG tool )
    1
    /* Tailwind Override */
    2
    h1 {
    3
    	display: block;
    4
    	font-size: 2em;
    5
    	margin-top: 0.67em;
  5. Htacces for deploying vue apps in su... Htacces for deploying vue apps in subdirectory
    1
    <IfModule mod_negotiation.c>
    2
      Options -MultiViews
    3
    </IfModule>
    4
    
                  
    5
    <IfModule mod_rewrite.c>
  6. Nuxt dockerfile with multi stage bui... Nuxt dockerfile with multi stage build and distorless image for less bundle size
    1
    # Use a large Node.js base image to build the application and name it "build"
    2
    FROM node:18-alpine as build
    3
    
                  
    4
    WORKDIR /app
    5