diff options
author | 2024-08-03 20:17:35 -0700 | |
---|---|---|
committer | 2024-08-03 20:17:35 -0700 | |
commit | f566fa80a9fb0f1af1198a62b60a80bb6ee1983b (patch) | |
tree | 85524af5ee5a1c53e7ca9050ea4a2115816f432b /frontend/postcss.config.mjs | |
download | ibd-trader-f566fa80a9fb0f1af1198a62b60a80bb6ee1983b.tar.gz ibd-trader-f566fa80a9fb0f1af1198a62b60a80bb6ee1983b.tar.zst ibd-trader-f566fa80a9fb0f1af1198a62b60a80bb6ee1983b.zip |
Initial commit from Create Next App
Diffstat (limited to 'frontend/postcss.config.mjs')
-rw-r--r-- | frontend/postcss.config.mjs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/frontend/postcss.config.mjs b/frontend/postcss.config.mjs new file mode 100644 index 0000000..1a69fd2 --- /dev/null +++ b/frontend/postcss.config.mjs @@ -0,0 +1,8 @@ +/** @type {import('postcss-load-config').Config} */ +const config = { + plugins: { + tailwindcss: {}, + }, +}; + +export default config; |