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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
This worked for me in the
farm.config.tsfile, but not sure if this is the right way?The SolidJS
farm.config.tsfile that gets deployed frombun create farm@latestlooks like this:Beta Was this translation helpful? Give feedback.
All reactions