UNPKG
@lynx-js/react-rsbuild-plugin
Version:
latest (0.12.1)
0.12.1
0.12.0
0.11.4
0.11.3
0.11.2
0.11.1
0.11.0
0.10.14
0.10.13
0.10.12
0.10.11
0.10.10
0.10.9
0.10.8
0.10.7
0.10.6
0.10.5
0.10.4
0.10.3
0.10.2
0.10.1
0.10.0
0.9.10
0.9.9
0.9.8
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
A rsbuild plugin for ReactLynx
github.com/lynx-family/lynx-stack
lynx-family/lynx-stack
@lynx-js/react-rsbuild-plugin
/
dist
/
loaders
/
ignore-css-loader.js
7 lines
(6 loc)
•
193 B
JavaScript
View Raw
1
2
3
4
5
6
7
function
ignoreCssLoader
(
source
) {
this
.
cacheable
(
true
);
if
(source.
includes
(
'___CSS_LOADER_EXPORT___'
))
return
'export {}'
;
return
source; }
export
{ ignoreCssLoader
as
default
};