React TypeScript Webpack - Setup From Scratch (3/8)

preview_player
Показать описание

📱 Follow Codevolution

React TypeScript Webpack - Setup From Scratch
Рекомендации по теме
Комментарии
Автор

Can you please do one for vite ? Love your series. Very helpful, concise and to the point.

xlf
Автор

5:37 you can simplify:

const { merge } = require('webpack-merge')
const commonConfig = require('./webpack.common')

module.exports = (envVars) => {
const { env } = envVars
const envConfig =
return merge(commonConfig, envConfig)
}

airshock
Автор

one tip for maybe more readable code: you can deconstruct an object as parameter in javascript. So instead of writing:

function x( obj ) {
const { atr } = obj;
}

you can do


function x( { atr } ) {
// use 'atr' as you need
}

catlord
Автор

Thank you so much for this helpful tutorial! ♥

josatienganh
Автор

Nice explanation of react typescript webpack combination.

Shakeel
Автор

how did you access 'process' in your react app, it's not defined on my end when I try to access it in my app

skyzsolstice
Автор

where did npx serve come from?
Where is ti defined? How does it know what to do for react serve?

TheDEMMX
Автор

Awesome serios!!! Thanks! One quick question: what do you mean by adding webpack.test.js if we have other environments? Let's say that I have SIT and UAT environments, how do you suggest handle them?

pogadev
Автор

i have issues on build, my routing is not working, it says, 404 requested path not found

shaikharbaazzz
Автор

Hi, I am facing one issue with this setup.
Build File is not working on IE11

milanjain
Автор

Hi everyone, please is there any way to prevent webpack from creating a js file for my my css when i run npm build? I keep getting appcss.js !!!

maymumk
Автор

Hello sir/everyone, Do you have any idea about signing the pdf using node js I have used node-sign pdf package but the package hasn't the solution which I am getting right now.
Thank you!

premjogi
Автор

Query:
Can same kind of env profiling b done with Nextjs projects?
Btw this series is awesome.. thanks a ton..

pranavpatil
Автор

"Hey guys my name is vishwas"

arunnegi
Автор

Can you make interview preparation course specifically for React JS and Redux

malikasultanova