mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
72479687d9
Co-authored-by: Aurélien Chrétien <aurelien@manager.one> Co-authored-by: Rémy Sanchez <remy.sanchez@hyperthese.net>
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
import fs from 'fs'
|
|
import path from 'path'
|
|
|
|
export default {
|
|
server: {
|
|
https: {
|
|
key: fs.readFileSync(path.resolve(__dirname, 'server.key')),
|
|
cert: fs.readFileSync(path.resolve(__dirname, 'server.crt'))
|
|
}
|
|
}
|
|
}
|