FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Aloha-Editor/postcss.config.js at dev · alohaeditor/Aloha-Editor · GitHub
alohaeditor
/
Aloha-Editor
Public
Notifications
You must be signed in to change notification settings
Fork
522
Star
2.5k
Code
Issues
123
Pull requests
22
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Aloha-Editor
/
postcss.config.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
20 lines (19 loc) · 558 Bytes
Breadcrumbs
Aloha-Editor
/
postcss.config.js
Copy path
File metadata and controls
20 lines (19 loc) · 558 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const
config
=
{
plugins
:
[
require
(
'postcss-import'
)
,
require
(
'postcss-plugin-namespace'
)
(
'.aloha'
,
{
/** We want to prefix all `.ui-` styles, as they are from jquery ui */
ignore
:
/
^
\.
(?
!
u
i
-
)
/
,
}
)
,
require
(
'postcss-url'
)
(
{
// Result is just the relative path without the leading '../'.
url
:
(
asset
)
=>
asset
.
relativePath
}
)
,
require
(
'postcss-combine-duplicated-selectors'
)
(
{
removeDuplicatedProperties
:
true
,
}
)
,
require
(
'autoprefixer'
)
,
require
(
'cssnano'
)
]
}
module
.
exports
=
config
Back
|
FazBrowse Home
|
New Git URL