mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 18:13:54 +00:00
c5a4465572
[release] Co-authored-by: Sébastien Chopin <seb@nuxtjs.com> Co-authored-by: pimlie <pimlie@hotmail.com>
29 lines
639 B
JavaScript
29 lines
639 B
JavaScript
import path from 'path'
|
|
import { dependencies } from '../package.json'
|
|
|
|
export const template = {
|
|
dependencies,
|
|
dir: path.join(__dirname, '..', 'template'),
|
|
files: [
|
|
'App.js',
|
|
'client.js',
|
|
'index.js',
|
|
'jsonp.js',
|
|
'router.js',
|
|
'router.scrollBehavior.js',
|
|
'routes.json',
|
|
'server.js',
|
|
'utils.js',
|
|
'empty.js',
|
|
'mixins/fetch.server.js',
|
|
'mixins/fetch.client.js',
|
|
'components/nuxt-error.vue',
|
|
'components/nuxt-child.js',
|
|
'components/nuxt-link.server.js',
|
|
'components/nuxt-link.client.js',
|
|
'components/nuxt.js',
|
|
'views/app.template.html',
|
|
'views/error.html'
|
|
]
|
|
}
|