diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-25T17·04+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-25T17·04+0000 |
commit | 06d2467c56de10ee353b746992694365a17d526b (patch) | |
tree | 0c95bb8b7bf79f4b75eb5cd37c50e0be79bd53da /website/goals/postcss.config.js | |
parent | cd06990fe3cad2d3098bc1964f2b7185e4491cfa (diff) |
Use boilerplate/typescript for goals
After deploying the version of this application that built everything in the browser, which originally was the impetus for the entire project, I learned that the babel in-browser transformer won't work. I'm not sure why, but I need to move on from this project and do other work. I ported the code to my boilerplate/typescript, which works. Wahoo!
Diffstat (limited to 'website/goals/postcss.config.js')
-rw-r--r-- | website/goals/postcss.config.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/website/goals/postcss.config.js b/website/goals/postcss.config.js new file mode 100644 index 000000000000..d68fa618664e --- /dev/null +++ b/website/goals/postcss.config.js @@ -0,0 +1,7 @@ +const tailwindcss = require('tailwindcss') + +module.exports = { + plugins: [ + tailwindcss('./tailwind.config.js') + ] +} |