Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

create react app and tailwind

1. npx create-react-app .

2. npm i -D tailwindcss postcss-cli autoprefixer 
or
npm install tailwindcss@latest postcss@latest autoprefixer@latest
//postcss - transform our compile css 
// autoprefixer - set vendor prefixes within our css automatically when needed

//Generate npc config file
3.npx tailwind init tailwind.js --full

// Create post css config file
4. touch postcss.config.js

//open postcss.config.js
//add this to the file
__________________________________________
const tailwindcss = require('tailwindcss');
module.exports = {
  plugins: [
    tailwindcss('./tailwind.js'),
    require('autoprefixer')
  ]
}
__________________________________________

5. inside scr, create assets folder src/assets
- create tailwind.css and main.css

in tailwind, add this code
//this will compile to the main css that will include in our app
___________________________________________
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
___________________________________________

6. Open package.json and add this iside the scripts
___________________________________________
   "start": "npm run watch:css && react-scripts start",
    "build": "npm run build:css && react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject",
    "build:css": "postcss src/assets/tailwind.css -o src/assets/main.css",
    "watch:css": "postcss src/assets/tailwind.css -o src/assets/main.css"
____________________________________________
7. run 'npm start'


add this to index.js
_____________________________________
import React from 'react';
import ReactDOM from 'react-dom';
import './assets/main.css';
import App from './App';

ReactDOM.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
  document.getElementById('root')
);
_________________________________


install router

1. npm i --save react-router-dom
Comment

create react app with tailwind

1. Create React Project
	npx create-react-app my-project
	cd my-project
  
2. Install Tailwind CSS
	npm install -D tailwindcss postcss autoprefixer
	npx tailwindcss init -p

3. Configure your template paths
	add the following code to your `tailwind.config.js` file:
   	content: [
    	"./src/**/*.{js,jsx,ts,tsx}",
  	],

4. Add the Tailwind directives to your CSS
	add the following code to your `./src/index.css` file:
	@tailwind base;
	@tailwind components;
	@tailwind utilities;

5. Start your build process
	npm run start
Comment

Add tailwind to create react app

npx create-react-app my-project
cd my-project
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
# Update the tailwind.config.js
module.exports = {
  content: [
    "./src/**/*.{js,jsx,ts,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}
# Add this to index.{less,sass,scss,css}
@tailwind base;
@tailwind components;
@tailwind utilities;
Comment

create react tailwind app

npx create-react-tailwind-app
Comment

PREVIOUS NEXT
Code Example
Javascript :: how to access value of itself object in javascript 
Javascript :: autofocus is not working in react native 
Javascript :: how to use break in javascript 
Javascript :: spotify player react 
Javascript :: js flatten 
Javascript :: jetty 
Javascript :: create responsive navbar without javascript 
Javascript :: how to reload webview in react native 
Javascript :: Adding an item to an array 
Javascript :: Liquid shopify 
Javascript :: default javascript 
Javascript :: how to add animation over image in Javascript 
Javascript :: buffer image 
Javascript :: how to validate date in react 
Javascript :: arrow function syntax vs function expression syntax 
Javascript :: validate on submit not working 
Javascript :: select all checkbox in angular 
Javascript :: insertar al inicio de un array javascript 
Javascript :: solid in css 
Javascript :: find element vs find elements 
Javascript :: findOne 
Javascript :: fetch log api response time 
Javascript :: can you get reinfected with the coronavirus 
Javascript :: javascript make pong 
Javascript :: node js find directory change directory 
Python :: install matplotlib conda 
Python :: python get file size in mb 
Python :: get the current year in python 
Python :: python open url in incognito 
Python :: use nltk to remove stop words 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =