adds tailwindcss

This commit is contained in:
Daniel Avila 2023-02-04 18:17:47 -05:00
parent 74232d7671
commit 0fb3a1cab3
9 changed files with 3020 additions and 7 deletions

View file

@ -73,8 +73,13 @@ module.exports = {
test: /\.(js|jsx)$/, //kind of file extension this rule should look for and apply in test
exclude: /node_modules/, //folder to be excluded
use: 'babel-loader' //loader which we are going to use
},
{
test: /\.css$/i,
include: path.resolve(__dirname, 'src'),
use: ['style-loader', 'css-loader', 'postcss-loader']
}
]
},
}
// plugins: [new HtmlWebpackPlugin()],
};