代码之家  ›  专栏  ›  技术社区  ›  Herman Starikov

如何从文件系统运行nuxt生成的网站?

  •  0
  • Herman Starikov  · 技术社区  · 6 年前

    当我从文件系统运行Nuxt生成的Vue网站时,如果没有服务器,我会 GET file:///_nuxt/... 状态为的 (failed)

    如何从文件系统运行Nuxt生成的VueJS应用程序?

    1 回复  |  直到 6 年前
        1
  •  1
  •   Herman Starikov    6 年前
    module.exports = {
      ...
      mode: 'spa',
      router: {
        ...
        mode: 'hash'
      },
      build: {
        extend (config) {
          ...
          config.output.publicPath = './_nuxt/'
    

    mode: 'spa'

    router mode: 'hash' history #

    config.output.publicPath file:///_nuxt/...