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

Highlights

  • Pro

Organizations

@NEVTIK-org @Internity-dev @HADE-Dev

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 a Fulltime Frontend Developer, PartTime Web3 Wanderer and a DeFi Advocat

Gmail Badge Linkedin Badge Dev.to Badge

Fanreza's github stats

Top Langs

user:12964689's SO profile






Tribute to my friend who create my profile picture

Linkedin Badge

Pinned Loading

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

    Vue 1

  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