Nov 7 · 1 min read
Thanks for getting back to me so shortly. Unfortunately it didn’t work. I think its the same error:
Serverless Nextjs: Copying next pages to tmp build folder
Serverless Nextjs: Found 2 next page(s)
Serverless Nextjs: Creating compat handler for page: _error.js
Serverless Nextjs: Creating compat handler for page: index.js
Serverless: Packaging service...
Serverless: Excluding development dependencies...
Serverless Nextjs: Cleaning up tmp build folder ...
Serverless Nextjs: Found bucket "landingpage-svrls" from serverless.yml
Serverless Nextjs: Proxying NextJS assets -> https://s3-us-west-1.amazonaws.com/landingpage-svrls/_next/{proxy}
Serverless: Creating Stack...
Serverless: Checking Stack create progress...
CloudFormation - CREATE_IN_PROGRESS - AWS::CloudFormation::Stack - minktalk-dev
CloudFormation - CREATE_IN_PROGRESS - AWS::S3::Bucket - ServerlessDeploymentBucket
CloudFormation - CREATE_IN_PROGRESS - AWS::S3::Bucket - NextStaticAssetsS3Bucket
CloudFormation - CREATE_IN_PROGRESS - AWS::S3::Bucket - ServerlessDeploymentBucket
CloudFormation - CREATE_FAILED - AWS::S3::Bucket - NextStaticAssetsS3Bucket
CloudFormation - CREATE_FAILED - AWS::S3::Bucket - ServerlessDeploymentBucket
CloudFormation - DELETE_IN_PROGRESS - AWS::CloudFormation::Stack - minktalk-dev
CloudFormation - DELETE_IN_PROGRESS - AWS::S3::Bucket - ServerlessDeploymentBucket
CloudFormation - DELETE_SKIPPED - AWS::S3::Bucket - NextStaticAssetsS3Bucket
CloudFormation - DELETE_COMPLETE - AWS::S3::Bucket - ServerlessDeploymentBucket
CloudFormation - DELETE_COMPLETE - AWS::CloudFormation::Stack - minktalk-dev
Serverless: Stack create finished...
Serverless Error ---------------------------------------Stack 'minktalk-dev' does not existGet Support --------------------------------------------
Docs: docs.serverless.com
Bugs: github.com/serverless/serverless/issues
Issues: forum.serverless.comYour Environment Information ---------------------------
Operating System: win32
Node Version: 12.5.0
Framework Version: 1.57.0
Plugin Version: 3.2.2
SDK Version: 2.2.1
Components Core Version: 1.1.2
Components CLI Version: 1.4.0
serverless.yml
service: ${self:custom.name}provider:
name: aws
runtime: nodejs10.x
stage: ${opt:stage, 'dev'}
region: us-west-1plugins:
- serverless-nextjs-plugin
- serverless-domain-managercustom:
name: minktalk
serverless-nextjs:
assetsBucketName: 'landingpage-svrls'package: # <- add here
# exclude everything
# page handlers are automatically included by the plugin
exclude:
- ./**