1.0.11 • Published 6 years ago

html-static-before-plugin v1.0.11

Weekly downloads
257
License
ISC
Repository
-
Last release
6 years ago

html-static-before-plugin


Used

在html模板中添加额外的 *.js or *.css 文件,

初始化 redux store state

关键字 <!--<html-static-before-plugin>--> 被替换的位置

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <!--<html-static-before-plugin>--> 
</head>
<body>
<div id="app"></div>
</body>
</html>
    new HtmlStaticBeforePlugin(options),

options

{
    assets: [
      'http://172.16.66.181:7998/react/v1/??react.production.min.js,react-dom.production.min.js,react-router-dom.min.js',
    ],
    initialState: {
      webSocket: 'ws://172.16.66.181'
    }
}

构建结果

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <script src="http://172.16.66.181:7998/react/v1/??react.production.min.js,react-dom.production.min.js,react-router-dom.min.js"></script>
</head>
<body>
<div id="app"></div>
</body>
</html>
1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago