-
-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Q] Webpack Usage? #78
Comments
Hey. Actually there are couple of plugins documented in the core library: https://github.com/JPeer264/node-rcs-core#plugins Might be useful to also add them in this repo. If you haven't seen it already, there is a webpack plugin for rcs: https://www.npmjs.com/package/rcs-webpack-plugin |
The |
In addition, const { rcs } = require('rcs-core')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const RcsWebpackPlugin = require('rcs-webpack-plugin')
mix.webpackConfig({
module: {
rules: [
{
test: /\.css$/,
use: [
{ loader: MiniCssExtractPlugin.loader },
'css-loader',
],
},
],
},
plugins: [
new MiniCssExtractPlugin(),
new RcsWebpackPlugin(),
],
}) Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js): |
This actually seems like a |
Theres no sass sadly, just tailwind .css file |
May I ask how you import the |
Hey buddy,
Is there any chance you can provide a usage example with Webpack?
The text was updated successfully, but these errors were encountered: