23 lines
514 B
JavaScript
23 lines
514 B
JavaScript
module.exports = {
|
|
pluginOptions: {
|
|
s3Deploy: {
|
|
registry: undefined,
|
|
awsProfile: 'default',
|
|
region: 'us-east-1',
|
|
bucket: 'lunchrunfrontend',
|
|
createBucket: true,
|
|
staticHosting: true,
|
|
staticIndexPage: 'index.html',
|
|
staticErrorPage: 'index.html',
|
|
assetPath: 'dist',
|
|
assetMatch: '**',
|
|
deployPath: '/',
|
|
acl: 'public-read',
|
|
pwa: false,
|
|
enableCloudfront: false,
|
|
uploadConcurrency: 5,
|
|
pluginVersion: '3.0.0'
|
|
}
|
|
}
|
|
}
|