Replies: 2 comments 3 replies
-
Dynamic babel configs should be already possible, what part are you running into trouble with? // babel-plugin-macros.config.js
const path = require('path');
const options = {
preset: 'styled-components',
debugPlugins: false,
};
module.exports = {
twin: {
config: path.resolve(__dirname, 'tailwind.config.js'),
...options,
},
}; |
Beta Was this translation helpful? Give feedback.
3 replies
-
In the latest twin rc, you can now pass a tailwind config object directly in via the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In some scenarios, it is desirable to support the following:
Beta Was this translation helpful? Give feedback.
All reactions