Gatsby: No se puede establecer la salida del paquete web.

Creado en 16 jun. 2019  ·  1Comentario  ·  Fuente: gatsbyjs/gatsby

Descripción

Quería ver los nombres de archivo de mis blobs css en las herramientas de desarrollo de Chrome.
image
el readme estilo-loader establece que la propiedad webpack output.publicPath debe ser conjunto. Configurarlo a través de gatsby-config.js hace que gatsby develop falle.

pasos para reproducir

gatsby-node.js:

  exports.onCreateWebpackConfig = ({ stage, rules, loaders, plugins, actions }) => actions.setWebpackConfig({
    output: {
      publicPath: '/',
    },
 });

Resultado Esperado

debería establecer la ruta, y se supone que las rutas absolutas se generan para mis archivos css desde el cargador de estilo que configuré

Resultado actual

> gatsby develop

success open and validate gatsby-configs - 0.058 s
success load plugins - 1.072 s
success onPreInit - 0.009 s
success initialize cache - 0.035 s
success copy gatsby files - 0.138 s
success onPreBootstrap - 0.026 s
success source and transform nodes - 0.087 s
success building schema - 0.349 s
success createPages - 0.004 s
success createPagesStatefully - 0.082 s
success onPreExtractQueries - 0.015 s
success update schema - 0.042 s
success extract queries from components - 0.157 s
success run static queries - 0.208 s — 2/2 10.53 queries/second
success run page queries - 0.052 s — 6/6 146.57 queries/second
success write out page data - 0.011 s
success write out redirect data - 0.008 s
success Build manifest and related icons - 0.411 s
success Build manifest and related icons - 0.014 s
success onPostBootstrap - 0.476 s
⠀
info bootstrap finished - 9.560 s
⠀
error There was an error compiling the html.js component for the development server.

See our docs page on debugging HTML builds for help https://gatsby.dev/debug-html


  Error: ./.cache/gatsby-browser-entry.js
  Module not found: Error: Can't resolve 'gatsby-link' in '/.../.cac
  he'
  resolve 'gatsby-link' in '/.../.cache'
    Parsed request is a module
   @ ./.cache/gatsby-browser-entry.js 3:0-112 42:0-45:64 42:0-45:64 42:0-45:64 42:0-45:64 42:0-45:64
  42:0-45:64 42:0-45:64 42:0-45:64
   @ ./node_modules/gatsby-plugin-manifest/gatsby-ssr.js
   @ ./.cache/api-runner-ssr.js

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] develop: `gatsby develop`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] develop script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /.../.npm/_logs/2019-06-16T19_56_49_086Z-debug.log
error Command failed with exit code 1.

Ambiente

Sistema:
SO: macOS High Sierra 10.13.6
CPU: (4) CPU x64 Intel (R) Core (TM) i5-4260U a 1,40 GHz
Shell: 5.6.2 - / usr / local / bin / zsh
Binarios:
Nodo: 10.15.2 - / usr / local / bin / node
Hilado: 1.13.0 - / usr / local / bin / yarn
npm: 6.7.0 - / usr / local / bin / npm
Idiomas:
Python: 2.7.15 - / usr / local / bin / python
Navegadores:
Cromo: 74.0.3729.169
Safari: 12.1.1
npm Paquetes:
gatsby: ^ 2.8.6 => 2.8.6
imagen-de-gatsby: ^ 2.1.2 => 2.1.2
gatsby-plugin-manifest: ^ 2.1.1 => 2.1.1
gatsby-plugin-offline: ^ 2.1.1 => 2.1.1
gatsby-plugin-react-casco: ^ 3.0.12 => 3.0.12
gatsby-plugin-sass: ^ 2.0.11 => 2.0.11
gatsby-plugin-sharp: ^ 2.1.3 => 2.1.3
gatsby-plugin-typecript: ^ 2.0.15 => 2.0.15
gatsby-source-filesystem: ^ 2.0.38 => 2.0.38
gatsby-transformer-sharp: ^ 2.1.21 => 2.1.21

question or discussion

>Todos los comentarios

Hola @wildeyes

Algunas opciones de configuración se ignorarán si se establecen, para intentar evitar roturas accidentales. Específicamente, se ignorará cualquier cambio en la entrada, salida, destino o resolveLoaders.

Como se documenta en https://www.gatsbyjs.org/docs/actions/#setWebpackConfig (extracto anterior), no admitimos configurar un par de claves y output es una de ellas.

Cerrando este problema por el momento, pero siéntase libre de reabrir si podemos ayudar con cualquier otra cosa relacionada con esto.

¿Fue útil esta página
0 / 5 - 0 calificaciones

Temas relacionados

benstr picture benstr  ·  3Comentarios

brandonmp picture brandonmp  ·  3Comentarios

kalinchernev picture kalinchernev  ·  3Comentarios

3CordGuy picture 3CordGuy  ·  3Comentarios

magicly picture magicly  ·  3Comentarios