Files
lunchrun-serverless/frontend/vue.config.js
2019-11-21 13:10:08 -06:00

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'
}
}
}