UNPKG
@silexlabs/eleventy-plugin-concat
Version:
latest (1.4.2)
prerelease (1.4.2-canary.0)
1.4.2
1.4.2-canary.0
1.4.1
1.4.0
1.3.0
1.2.3
1.2.2
1.1.1-0
1.1.0
1.0.13-0
1.0.12
1.0.11
1.0.10
1.0.8
1.0.5
1.0.4
1.0.2
1.0.0
Eleventy plugin to bundle your scripts and styles
@silexlabs/eleventy-plugin-concat
/
test.html
15 lines
(14 loc)
•
311 B
HTML
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<
body
>
<
head
>
<
script
data-concat
src
=
'./tests/local1.js'
>
</
script
>
<
script
data-concat
src
=
'./tests/local3.js'
>
</
script
>
<
style
data-concat
>
body
{
background
: red; }
</
style
>
<
style
data-concat
>
body
{
background
: blue; }
</
style
>
</
head
>
</
body
>