-
-
Save splotnikov-sketch/ae81472a8dd27af18ae48d9f2d6a4b2a to your computer and use it in GitHub Desktop.
Revisions
-
bradtraversy revised this gist
May 18, 2022 . 1 changed file with 1 addition and 11 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -15,7 +15,7 @@ npm i -D tailwindcss ### Install Webpack & Loaders ``` npm i -D webpack webpack-cli webpack-dev-server style-loader css-loader postcss postcss-loader postcss-preset-env ``` ### Create webpack.config.js in the root and add this to it... ``` @@ -40,16 +40,6 @@ module.exports = { }, module: { rules: [ { test: /\.css$/i, include: path.resolve(__dirname, 'src'), -
bradtraversy revised this gist
May 18, 2022 . 1 changed file with 3 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,9 +5,8 @@ npm init -y ``` ### Create your src folder Create a folder called **src** and add an empty **index.js** file. The code that webpack compiles goes in here including any Javascript modules and the main Tailwind file. ### Install Tailwind ``` @@ -104,7 +103,7 @@ module.exports = { import './style.css'; ``` ### Create a **dist/index.html** file and add this ``` <!DOCTYPE html> <html lang="en"> -
bradtraversy revised this gist
Apr 29, 2022 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,9 +5,9 @@ npm init -y ``` ### Create your src/dist folders Create a folder called **src** and add an empty **index.js** file. This is where all of your source code will go. Create a folder dalled **dist** and add an empty **index.html** file. This is your production code including the generated CSS. ### Install Tailwind ``` @@ -104,7 +104,7 @@ module.exports = { import './style.css'; ``` ### Add this to your **dist/index.html** file ``` <!DOCTYPE html> <html lang="en"> @@ -132,7 +132,7 @@ Add the following to your package.json file ``` ### Running your app To build once and create your **dist/bundle.js** file, run ``` npm run build ``` @@ -142,4 +142,4 @@ To run your webpack server npm run dev ``` You now have Webpack setup along with Tailwind CSS -
bradtraversy created this gist
Apr 29, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,145 @@ # Webpack & Tailwind CSS Setup ### Create your package.json ``` npm init -y ``` ### Create your source/dist folders Create a folder called **src** and add an empty **index.js** file. This is where all of your source code will go. Create a folder dalled **dist**. This is your production code including the generated CSS. ### Install Tailwind ``` npm i -D tailwindcss ``` ### Install Webpack & Loaders ``` npm i -D webpack webpack-cli webpack-dev-server babel-loader @babel/core @babel/preset-env style-loader css-loader postcss postcss-loader postcss-preset-env ``` ### Create webpack.config.js in the root and add this to it... ``` const path = require('path') module.exports = { mode: 'development', entry: './src/index.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'bundle.js', }, devServer: { static: { directory: path.resolve(__dirname, 'dist'), }, port: 3000, open: true, hot: true, compress: true, historyApiFallback: true, }, module: { rules: [ { test: /\.js$/i, include: path.resolve(__dirname, 'src'), use: { loader: 'babel-loader', options: { presets: ['@babel/preset-env'], }, }, }, { test: /\.css$/i, include: path.resolve(__dirname, 'src'), use: ['style-loader', 'css-loader', 'postcss-loader'], }, ], }, } ``` ### Add Tailwind Directives Create a **style.css** in your **src** folder and add these 3 lines ``` @tailwind base; @tailwind components; @tailwind utilities; ``` ### Tailwind Config File run the following command to generate your **tailwind.config.js** file and add this to it ``` module.exports = { content: ['./dist/*.html'], theme: { extend: {}, }, variants: { extend: {}, }, plugins: [], } ``` ### PostCCSS Config File Create a file in the root called **postcss.config.js** and add this ``` const tailwindcss = require('tailwindcss'); module.exports = { plugins: [ 'postcss-preset-env', tailwindcss ], }; ``` ### Add this line to your src/index.js ``` import './style.css'; ``` ### In your dist folder, create an index.html file and add this ``` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Webpack App</title> </head> <body> <h1 class="text-4xl text-blue-700">My Webpack + Tailwind App</h1> <script src="bundle.js"></script> </body> </html> ``` ### Add scripts to package.json Add the following to your package.json file ``` "scripts": { "dev": "webpack serve", "build": "webpack" }, ``` ### Running your app To build once, run ``` npm run build ``` To run your webpack server ``` npm run dev ``` Your Tailwind classes will now work in your Webpack app