Replies: 2 comments 1 reply
-
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Then, what is the configuration for tailwindcss with Solid? Tried this, and it did not work after installing tailwindcss using the vite/SolidJS instruction which usually work. import { defineConfig } from '@farmfe/core';
import solid from 'vite-plugin-solid';
import farmPostcssPlugin from '@farmfe/js-plugin-postcss'
export default defineConfig({
vitePlugins: [
() => ({
vitePlugin: solid(),
filters: ['\\.tsx$', '\\.jsx$'],
postcss: farmPostcssPlugin()
})
]
});
```
Thank you |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This worked for me in the
farm.config.ts
file, but not sure if this is the right way?The SolidJS
farm.config.ts
file that gets deployed frombun create farm@latest
looks like this:Beta Was this translation helpful? Give feedback.
All reactions