Created
February 11, 2021 06:28
-
-
Save devpato/0c39042d10993e24c64540696a19bad6 to your computer and use it in GitHub Desktop.
webpack.config.js
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 characters
const { addTailwindPlugin } = require("@ngneat/tailwind"); | |
const tailwindConfig = require("./tailwind.config.js"); | |
module.exports = (config) => { | |
addTailwindPlugin({ | |
webpackConfig: config, | |
tailwindConfig, | |
patchComponentsStyles: true | |
}); | |
return config; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment