mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Specify the path to the postcss config and remove the include arrays as they caused multiple issues on linux
This commit is contained in:
parent
6e922166e7
commit
9063a96629
@ -33,11 +33,6 @@ module.exports = {
|
|||||||
{ test: /\.js$/, use: "babel-loader", include: path.resolve(__dirname, 'src') },
|
{ test: /\.js$/, use: "babel-loader", include: path.resolve(__dirname, 'src') },
|
||||||
{
|
{
|
||||||
test: /\.scss$/,
|
test: /\.scss$/,
|
||||||
include: [
|
|
||||||
path.resolve(__dirname, 'res/themes/status/css/'),
|
|
||||||
path.resolve(__dirname, 'node_modules/matrix-react-sdk/res/themes/light/css/'),
|
|
||||||
path.resolve(__dirname, 'node_modules/matrix-react-sdk/res/themes/dark/css/'),
|
|
||||||
],
|
|
||||||
// 1. postcss-loader turns the SCSS into normal CSS.
|
// 1. postcss-loader turns the SCSS into normal CSS.
|
||||||
// 2. raw-loader turns the CSS into a javascript module
|
// 2. raw-loader turns the CSS into a javascript module
|
||||||
// whose default export is a string containing the CSS.
|
// whose default export is a string containing the CSS.
|
||||||
@ -48,19 +43,20 @@ module.exports = {
|
|||||||
use: ExtractTextPlugin.extract({
|
use: ExtractTextPlugin.extract({
|
||||||
use: [
|
use: [
|
||||||
"raw-loader",
|
"raw-loader",
|
||||||
"postcss-loader"
|
{
|
||||||
|
loader: 'postcss-loader',
|
||||||
|
options: {
|
||||||
|
config: {
|
||||||
|
path: './postcss.config.js'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// this works similarly to the scss case, without postcss.
|
// this works similarly to the scss case, without postcss.
|
||||||
test: /\.css$/,
|
test: /\.css$/,
|
||||||
include: [
|
|
||||||
path.resolve(__dirname, "node_modules/highlight.js/styles"),
|
|
||||||
path.resolve(__dirname, "node_modules/draft-js/dist"),
|
|
||||||
path.resolve(__dirname, "node_modules/gfm.css"),
|
|
||||||
path.resolve(__dirname, "node_modules/gemini-scrollbar/"),
|
|
||||||
],
|
|
||||||
use: ExtractTextPlugin.extract({
|
use: ExtractTextPlugin.extract({
|
||||||
use: "raw-loader"
|
use: "raw-loader"
|
||||||
}),
|
}),
|
||||||
|
Loading…
Reference in New Issue
Block a user