Created
November 9, 2019 17:16
-
-
Save talentlessguy/067a77e2baab0adb4986743c8f35bd15 to your computer and use it in GitHub Desktop.
Styled JSX + PostCSS
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
module.exports = { | |
presets: [ | |
[ | |
'next/babel', | |
{ | |
'styled-jsx': { | |
plugins: [ | |
[ | |
'styled-jsx-plugin-postcss', | |
{ | |
path: __dirname + '/postcss.config.js' | |
} | |
] | |
] | |
} | |
} | |
] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment