5

我对static-site-generator-webpack-plugin有一些问题。

在我的项目中,我正在使用:

  • webpack v2.1.0-beta.27
  • 静态站点生成器 webpack 插件v3.1.0
  • reactreact-dom v15.4.1

这是一个单页网站。

这是webpack.config.babel.js文件的一部分:

import StaticSiteGeneratorPlugin from 'static-site-generator-webpack-plugin'
  
export default {
    entry: {
        main: './components/Root/index.jsx',
    },
    output: {
        path: path.join(process.cwd(), './public'),
        filename: '[name].[hash].js',
        libraryTarget: 'umd',
    },
  
      plugins: [
        // ...
        new StaticSiteGeneratorPlugin('main', '/', {}),
      ]
        // ...
  }

这是./components/Root/index.jsx文件:

import React from 'react'
import ReactDOMServer from 'react-dom/server'
import HTMLDocument from 'react-html-document'

import App from '../App/index.jsx'

export default function (locals, callback) {
    const MyHtml = (
        <HTMLDocument
            title='My Page'
            metatags={[
              { name: 'description', content: 'My description' },
            ]}
            scripts={[ `${locals.assets.main}` ]}>
            <App />
        </HTMLDocument>
    )

    const html = ReactDOMServer.renderToStaticMarkup(MyHtml, locals.assets)
    callback(null, '<!doctype html>' + html)
}

当我尝试使用它时,我看到错误消息:ERROR in ReferenceError: self is not defined. 这是什么意思?

4

1 回答 1

6

我对webpack-dev-server有同样的错误。此错误的原因是在服务器上呈现。服务器没有对象self。您可以使用scope选项(https://github.com/markdalgleish/static-site-generator-webpack-plugin#scope)或者只是避免在服务器上使用 static-site-generator-webpack-plugin。

如果你使用webpack-dev-server来解决这个错误,你必须设置inline: falsehttps://github.com/webpack/docs/wiki/webpack-dev-server#inline-mode)。如果你想在你的根 URL 中使用热重载,没有 iframe,只需添加<script src="http://localhost:8080/webpack-dev-server.js"></script>到你的页面(https://github.com/webpack/docs/wiki/webpack-dev-server#inline-mode-in-html) .

于 2017-01-05T18:46:02.497 回答