dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
Bump handlebars from 4.1.2 to 4… (compare)
zen
from create-apollo-app
and use webpack.config.js
instead
I feel I want this webpack option set to true: https://webpack.js.org/configuration/other-options/#bail. But when I add a .zenrc.js file with:
const config = {
builders: {
server: {
webpackConfig: {
bail: true
}
}
}
}
it doesn't work
server
directory is always built before the web
directory and it's not following the last exit status code or something
create-apollo-app
, we have very similar project to create-apollo-app
where we do ship Dockerfile and docker-compose.yml
:@jbsaeza Create file src/index.html
:
<!DOCTYPE html>
<html>
<head>
<base href="/">
<meta charset="utf-8">
<title><%= htmlWebpackPlugin.options.title %></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id='root'></div>
</body>
</html>
It will be picked up automatically and you will be able to change the title
packages/server/build
... mainly an index.js
and then a index.{hash}.js.map
file. I've been struggling to get this in my launch.json file so it has all source maps available
launch.json
file has a launch type of Attach by Process ID
... and then I pick the one that GraphQL is running on. It attaches just fine, but breakpoints aren't working because it can't find the source maps. The error I get is: breakpoint ignored because generated code not found (source map problem?)
devtoolModuleFilenameTemplate: 'file://[absolute-resource-path]'