beautiful works with tailwind webpack

This commit is contained in:
talksik
2022-03-17 10:27:42 -04:00
parent 20ddc5a324
commit 6e73313748
10 changed files with 104 additions and 16 deletions
+3 -3
View File
@@ -3,12 +3,12 @@ module.exports = {
* This is the main entry point for your application, it's the first file
* that runs in the main process.
*/
entry: './src/index.ts',
entry: "./src/index.ts",
// Put your normal webpack config below here
module: {
rules: require('./webpack.rules'),
rules: require("./webpack.rules"),
},
resolve: {
extensions: ['.js', '.ts', '.jsx', '.tsx', '.css', '.json'],
extensions: [".js", ".ts", ".jsx", ".tsx", ".css", ".json"],
},
};