Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
23 views

I'm a junior web developer and I want to create a portfolio website using Bootstrap 5. When it's finalized, I want to add animations using AOS JS. However, when I add these, the website doesn't ...
Adjie Pradana's user avatar
0 votes
0 answers
26 views

I'm trying to recreate an overlapping box layout where one box appears to "intrude" into another box's border with a smooth, curved notch effect (not just a straight cutout). Here is the ...
BigLadDylan's user avatar
Advice
0 votes
1 replies
67 views

In modern front-end development, there are many techniques to improve performance like lazy loading, code splitting, and memoization. In your experience, which underrated best practice has made the ...
Lucifer's user avatar
  • 537
Tooling
0 votes
1 replies
50 views

I have an automated deployment tool that generates a React or Angular project, uploads it to Azure App Service, and then restores node_modules to reduce build time. To avoid running npm install on ...
Shaan's user avatar
  • 11
Best practices
0 votes
3 replies
39 views

We have a nuxt.js project which is an ecommerce site. We load the products page with first 100 products as SSR. after that we load other products as we needed from the client side using an API call. ...
margherita pizza's user avatar
Best practices
0 votes
0 replies
35 views

Recently we upgraded to Nx 22 and ESLint 9, which broke a lot of linting across the repo because the old .eslintrc-style configs and Next.js presets aren’t compatible with flat-config. I spent quite a ...
Olean's user avatar
  • 1
Best practices
0 votes
0 replies
23 views

We follow this article to write all our API calls https://medium.com/@luizzappa/nuxt-3-repository-pattern-organising-and-managing-your-calls-to-apis-with-typescript-acd563a4e046 so we can fetch a ...
td2thinh's user avatar
Advice
2 votes
0 replies
46 views

I’ve been working as a frontend developer for around 3 years, but honestly, I feel stuck. My current company doesn’t really follow standard software engineering practices, and the work has become ...
cybertron's user avatar
Best practices
1 vote
1 replies
35 views

I'm building a Nuxt 3 application using a feature-based architecture inspired by Domain-Driven Design. Each feature is meant to be fully isolated, with its own components, state, API layer, and ...
KobiM1's user avatar
  • 81
Advice
0 votes
0 replies
52 views

My professional experience in tech has mostly been on the back-end, but I've been trying to learn more about front-end technologies like React so that I have more tools at my disposal. Broadly ...
Always a Newb at Something's user avatar
-1 votes
0 answers
40 views

I am trying create a dynamic classes using BEM along with the css mixins. .card--sty-1{ &__circle{} &__link{}; } .card--sty-2{ &__circle{} &__link{}; } ...for --sty-[n ...
Tejas_More's user avatar
Advice
0 votes
4 replies
85 views

My colleague and I are having a discussion about some client server system we are building. After eliminating the particular details it comes down to a very basic conceptual question. A backend is of ...
KansaiRobot's user avatar
  • 10.6k
-2 votes
0 answers
41 views

import dagre from 'dagre'; import { Node, Edge, Position } from 'reactflow'; export default function layoutDAG( nodes: Node[], edges: Edge[], dagType: 'T' | 'I' | 'D' ): { nodes: Node[]; edges: ...
Sindhu Kumari's user avatar
Tooling
0 votes
1 replies
56 views

I’m working on a React project using Vite as the build tool. I’d like to automatically compress PNG and JPEG images when building for production, without changing the image import paths (so that ...
wxh_OSM's user avatar
  • 34
0 votes
1 answer
105 views

I built a sort of timeline with a grid design and horizontal scrolling. Dates are in the center row, while a picture is in 1st and some legend in 3rd. The aim is to display pictures and legends only ...
Nicolas Bège's user avatar
0 votes
0 answers
123 views

I am following this tutorial to create a custom control that inherits from one different than UserControl. When opening the designer view of this control, instead of seeing a render of the control, I ...
Heltta's user avatar
  • 1
1 vote
1 answer
343 views

I'm exploring the new MCP (Model Context Protocol) server introduced in Next.js 16, and I’d like to understand how to properly enable and use it in a development environment. What I’ve done so far: ...
Amirhossein Modirkhazeni's user avatar
1 vote
1 answer
92 views

https://kraker52.github.io/Flipping-Card/ Here is the link to the mini project I made (I don't think it would even be considered mini to you guys). The problem is when you try to hover on it from ...
Kraker's user avatar
  • 35
0 votes
1 answer
123 views

I'm working in astro which uses vite as its bundler, don't know if that helps. So basically I have p5.js as a dependency for a sketch I demonstrate on my portfolio site, using the library from npm, ...
HyperChromatica's user avatar
1 vote
0 answers
61 views

Before this gets flagged this as a duplicate of Remove space below the text baseline with CSS, the solution outlined there (adjusting line-height) has not solved my issue. Here is a minimal ...
Quentin James's user avatar
0 votes
1 answer
65 views

I’m using Inertia.js with Vue 3, and I want to show a success message when a form is submitted successfully. In my controller I have: public function store(Request $request) { $validated = $...
WILLIANS HERIBERTO NAVAS REYES's user avatar
0 votes
0 answers
69 views

I’m using Laravel 10 with Inertia.js and Vue 3. In my controller, I return a page like this: use Inertia\Inertia; use App\Models\User; public function dashboard() { $users = User::all(); ...
WILLIANS HERIBERTO NAVAS REYES's user avatar
2 votes
1 answer
81 views

I have made a Tauri app. This app uses C in the backend. The C file contains multiple functions. Some functions use the sudo command to get data. I have started this C file in the Tauri app by writing ...
user27793975's user avatar
-1 votes
2 answers
85 views

I’m working on a multilingual application with the following structure: messages/ ├── en.d.json.ts // baseline type definition ├── en.json ├── ja.json ├── zh-CN.json └── zh-TW.json Each file has ...
Tom Fan's user avatar
  • 560
2 votes
1 answer
116 views

I’m working on a project using Next.js + next-intl + Tailwind CSS. For English I’m using the Poppins font, and for Arabic I’m using Tajawal. The problem is that when switching to Arabic (RTL), the ...
Abd elmoumaine Nessah's user avatar
0 votes
0 answers
57 views

I am using Quasar Framework and have a component with multiple and use-chips enabled. The problem I am facing: By default, the multi-select has 40px height. I want to reduce the default height to ...
Karan Soni's user avatar
4 votes
1 answer
108 views

I'm developing a web application with a text-to-speech feature. Users can select text on the page and then click a "Play text to speech" button to have it read aloud. This works perfectly on ...
user31559076's user avatar
-1 votes
2 answers
118 views

I have a React web app wrapped with Capacitor and running on Android. My backend is a Node.js server running on my local machine with IP 10.0.0.193:3000. When I open the backend in my phone’s browser,...
Bear Bile Farming is Torture's user avatar
0 votes
1 answer
108 views

I'm trying to use a element that stays fixed on the screen, so I’ve applied: dialog { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; margin: 0; overflow: auto; } On ...
Bear Bile Farming is Torture's user avatar
0 votes
2 answers
47 views

I’m working on a web project built from an enterprise scaffold using webpack v5 and Babel. The target environment is Chrome ≥ 138 only. However, I’ve noticed that the build includes unnecessary ...
ipid's user avatar
  • 662
0 votes
0 answers
120 views

I'm integrating the Mercado Pago Payment Brick in my Vue 3 / TypeScript project, and I'm facing an issue: whenever I try to submit the payment, the Brick returns the error missing_payment_information ...
Diego Orozco's user avatar
1 vote
2 answers
153 views

I'm currently building a website that involves a chatbot, and in the chat message input, there's a black box behind it that is covering part of my background image. Is there a way to remove it? I ...
uzn4v1's user avatar
  • 25
0 votes
0 answers
57 views

This is my onMounted call and the loadTripAdvanceDetail function here is responsible for populating the form for edit operations however it makes my form dirty and gives me the unsaved changes dialog ...
Saksham Khurana's user avatar
1 vote
1 answer
84 views

Based on the HTML examples provided, is it considered better practice to mark up an author's name with the cite tag or a span tag? I've read that the cite tag is intended for referencing a work (like ...
Ahmed Ali's user avatar
-1 votes
2 answers
122 views

Context I’m using React Hook Form together with React Query. The parent component fetches data with a query, derives defaultValues, and passes them into the form. Parent component: export const ...
Andrey Rafalskyi's user avatar
0 votes
1 answer
95 views

I’m working on a React app where I need to manage multiple iframes dynamically. Each iframe is created only once and stored in a cache (Map/Ref) for reuse. At any given time, only the selected iframe ...
Nandha Kumar V C's user avatar
2 votes
0 answers
84 views

I'm learning about DI-based interceptors in Angular 20. When I ran my Angular app, the home page (that contains API to get products) was loading for a long time and I received no response on the ...
Intern developer's user avatar
0 votes
0 answers
65 views

I need to build this special shaped button. So initially the outline will be white and background will be transparent when I hover over it both the border and transparent background should become ...
Manjesh R V's user avatar
1 vote
2 answers
270 views

I am creating a horizontal logo slider with multiple tracks.My goal is: Even-numbered tracks should animate logos to the right. Odd-numbered tracks should animate logos to the left. Whenever I add new ...
Vortex Code Developer's user avatar
2 votes
0 answers
52 views

I'm working on a Parcel frontend project using DuckDB, and it runs well in the Production environment. However, in my local machine the browser displays this error. And as I've just mentioned, this ...
Cool Weather Here's user avatar
0 votes
0 answers
49 views

i started using framer-motion 3 days ago, i tried making a dropdown menu which has a dropiing animation, the menu contains a list that has a slide animation, it slides when changing the menu as a ...
yubi 's user avatar
0 votes
0 answers
45 views

https://www.npmjs.com/package/@capacitor-community/admob#resumebanner None of the description explain which counts as an impression that contributes to revenue. The ad type is interstitial. The plugin ...
Bear Bile Farming is Torture's user avatar
0 votes
1 answer
63 views

I have multiple projects set up in a monorepo. I load all of them and browse out to Shared to load the initial layout. However, when I click a link to go to a different zone/app Customer, I receive ...
Chris's user avatar
  • 371
1 vote
0 answers
71 views

I’m working on a Nuxt 3 project and encountering an issue with the watch property. I’m watching $route.query, and whenever a query parameter changes, I call an API to fetch data. The problem is that ...
M Hamza Mughal's user avatar
0 votes
1 answer
59 views

I have set up an api backend using FastAPI. Backend testing has been done already. But I don't know how to test the frontend correctly which is usign the api. Because I want at least one test that is ...
Clyde's user avatar
  • 62
0 votes
0 answers
44 views

I am stuck on a frustrating behavior on my next js app which I recently deployed to vercel production environment. Basically all pages are loading except my SSR page that uses dynamic routes. Also ...
Abdul Hannan's user avatar
-4 votes
1 answer
117 views

I'm trying to implement a signup form and using the react-toastify package to show success and error messages. While the toast.error function works perfectly, the toast.success function does not ...
Anwar Ali's user avatar
1 vote
2 answers
236 views

The Goal I receive a weather forecast from the NWS that has a very particular HTML formatting that I want to preserve. A forecast will always change in both its length and its width. I want to scale ...
Hunter's user avatar
  • 702
1 vote
2 answers
119 views

I am currently new to Tailwind CSS and figuring out why my login component CSS classes are also applied to every other component as well, I've tried scoping this CSS classes with modules as well but ...
Neel Chavan's user avatar
0 votes
0 answers
32 views

I recently initiated a Next JS project and also installed ShadCN ui with it. By default every Next JS project comes with tailwind css and it was at first working but as soon as I started adding ShadCn'...
Abdullah Tariq's user avatar

1
2 3 4 5
290