1
0
mirror of https://github.com/PanJiaChen/electron-vue-admin.git synced 2025-04-05 19:41:41 +08:00
This commit is contained in:
huangqingpeng@curefun.com 2019-07-29 16:04:10 +08:00
parent ec3afcc232
commit 8923a66c8f
4 changed files with 36 additions and 33 deletions

View File

@ -60,8 +60,7 @@ function startRenderer () {
})
const server = new WebpackDevServer(
compiler,
{
compiler, {
contentBase: path.join(__dirname, '../'),
quiet: true,
before(app, ctx) {

View File

0
dist/web/.gitkeep vendored
View File

View File

@ -1,15 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>electron-vue-admin</title>
<% if (htmlWebpackPlugin.options.nodeModules) { %>
<!-- Add `node_modules/` to global paths so `require` works properly in development -->
<script>
require('module').globalPaths.push('<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\') %>')
require('module').globalPaths.push('<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\
') %>')
</script>
<% } %>
</head>
<body>
<div id="app"></div>
<!-- Set `__static` path to static files in production -->
@ -19,4 +22,5 @@
<!-- webpack builds are automatically injected -->
</body>
</html>